| 1 | export isPlainObject from 'is-plain-object'; |
| 2 | export const isArray = Array.isArray.bind(Array); |
| 3 | export const isFunction = o => typeof o === 'function'; |
| 4 | export const returnSelf = m => m; |
| 5 | // avoid es6 array.prototype.findIndex polyfill |
| 6 | export const noop = () => {}; |
no outgoing calls
no test coverage detected
searching dependent graphs…