(str: string)
| 576 | } |
| 577 | |
| 578 | export function snakeToCamel(str: string): string { |
| 579 | return str.replace(/(_\w)/g, function (m: string): string { |
| 580 | return m[1].toUpperCase(); |
| 581 | }); |
| 582 | } |
| 583 | |
| 584 | export function roughSizeOfObject(object: object): number { |
| 585 | /** Gets the rough memory size of the object in bytes. **/ |
no outgoing calls
no test coverage detected