(value)
| 236 | } |
| 237 | |
| 238 | export function isObject(value) { |
| 239 | const type = typeof value; |
| 240 | return value != null && (type === 'object' || type === 'function'); |
| 241 | } |
| 242 | |
| 243 | export function toNumber(value) { |
| 244 | const type = typeof value; |
no outgoing calls
no test coverage detected
searching dependent graphs…