(input)
| 340 | hooks.deprecationHandler = null; |
| 341 | |
| 342 | function isFunction(input) { |
| 343 | return ( |
| 344 | (typeof Function !== 'undefined' && input instanceof Function) || |
| 345 | Object.prototype.toString.call(input) === '[object Function]' |
| 346 | ); |
| 347 | } |
| 348 | |
| 349 | function set(config) { |
| 350 | var prop, i; |
no outgoing calls
no test coverage detected