(s: string)
| 12 | } |
| 13 | |
| 14 | function toSnake(s: string) { |
| 15 | return s.replace(/([A-Z])/g, '_$1').toLowerCase() |
| 16 | } |
| 17 | |
| 18 | function isObject(obj: unknown) { |
| 19 | return obj === Object(obj) && !Array.isArray(obj) && typeof obj !== 'function' |
no outgoing calls
no test coverage detected