(msg)
| 275 | } |
| 276 | |
| 277 | function warn(msg) { |
| 278 | if ( |
| 279 | hooks.suppressDeprecationWarnings === false && |
| 280 | typeof console !== 'undefined' && |
| 281 | console.warn |
| 282 | ) { |
| 283 | console.warn('Deprecation warning: ' + msg); |
| 284 | } |
| 285 | } |
| 286 | |
| 287 | function deprecate(msg, fn) { |
| 288 | var firstTime = true; |
no outgoing calls
no test coverage detected