(msg)
| 14996 | } |
| 14997 | |
| 14998 | function warn(msg) { |
| 14999 | if (hooks.suppressDeprecationWarnings === false && |
| 15000 | (typeof console !== 'undefined') && console.warn) { |
| 15001 | console.warn('Deprecation warning: ' + msg); |
| 15002 | } |
| 15003 | } |
| 15004 | |
| 15005 | function deprecate(msg, fn) { |
| 15006 | var firstTime = true; |
no outgoing calls
no test coverage detected