Skip to content
Permalink
Tree: 1e14cf0577
Go to file
 
 
Cannot retrieve contributors at this time
11 lines (10 sloc) 623 Bytes
/* 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');
}
You can’t perform that action at this time.