Permalink
Cannot retrieve contributors at this time
Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upcore-js/packages/core-js/scripts/postinstall.js /
Go to file| /* eslint-disable no-console,max-len */ | |
| var env = process.env; | |
| var CI = !!env.CI && env.CI !== '0' && env.CI !== 'false'; | |
| var SILENT = !!~['silent', 'error', 'warn'].indexOf(env.npm_config_loglevel); | |
| if (!CI && !SILENT) { | |
| console.log('\u001B[96mThank you for using core-js (\u001B[94mhttps://github.com/zloirock/core-js\u001B[96m)!\u001B[0m'); | |
| console.log('\u001B[96mPlease consider supporting of core-js on Open Collective or Patreon:\u001B[0m'); | |
| console.log('\u001B[96m> \u001B[94mhttps://opencollective.com/core-js\u001B[0m'); | |
| console.log('\u001B[96m> \u001B[94mhttps://www.patreon.com/zloirock\u001B[0m\n'); | |
| } |