11cb0ef41Sopenharmony_ciconst debug = ( 21cb0ef41Sopenharmony_ci typeof process === 'object' && 31cb0ef41Sopenharmony_ci process.env && 41cb0ef41Sopenharmony_ci process.env.NODE_DEBUG && 51cb0ef41Sopenharmony_ci /\bsemver\b/i.test(process.env.NODE_DEBUG) 61cb0ef41Sopenharmony_ci) ? (...args) => console.error('SEMVER', ...args) 71cb0ef41Sopenharmony_ci : () => {} 81cb0ef41Sopenharmony_ci 91cb0ef41Sopenharmony_cimodule.exports = debug 10