* This function deferrs to the upstream isDeprecationRemoved function from semver-deprecate * but closes around the current emberCLIVersion for convenience since there is some logic around * what is considered the current version * * @private * @method * @param {string} until - a Semve
(until)
| 18 | * @return {boolean} |
| 19 | */ |
| 20 | function _isDeprecationRemoved(until) { |
| 21 | return isDeprecationRemoved(until, emberCLIVersion); |
| 22 | } |
| 23 | |
| 24 | module.exports = deprecate; |
| 25 | module.exports._isDeprecationRemoved = _isDeprecationRemoved; |
no outgoing calls
no test coverage detected
searching dependent graphs…