(value)
| 23 | return Object.prototype.toString.call(value) === '[object Array]'; |
| 24 | } |
| 25 | function isFunction(value) { |
| 26 | return typeof value === 'function'; |
| 27 | } |
| 28 | function getMapValue(map, key) { |
| 29 | return (key != null && hasOwn(map, key)) ? map[key] : null; |
| 30 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…