remove bin link

This commit is contained in:
OpportunityLiu
2020-03-31 19:08:21 +08:00
Unverified
parent 2836246660
commit 19f24a28c9
144 changed files with 12197 additions and 1 deletions
+9
View File
@@ -0,0 +1,9 @@
const debug = (
typeof process === 'object' &&
process.env &&
process.env.NODE_DEBUG &&
/\bsemver\b/i.test(process.env.NODE_DEBUG)
) ? (...args) => console.error('SEMVER', ...args)
: () => {}
module.exports = debug