(val, key)
| 343 | }; |
| 344 | const hasOwnProperty$1 = Object.prototype.hasOwnProperty; |
| 345 | const hasOwn = (val, key) => hasOwnProperty$1.call(val, key); |
| 346 | const isArray = Array.isArray; |
| 347 | const isMap = (val) => toTypeString(val) === '[object Map]'; |
| 348 | const isSet = (val) => toTypeString(val) === '[object Set]'; |
no outgoing calls
no test coverage detected