index.js (362B)
1 var colors = require('./colors'); 2 module['exports'] = colors; 3 4 // Remark: By default, colors will add style properties to String.prototype 5 // 6 // If you don't wish to extend String.prototype you can do this instead and native String will not be touched 7 // 8 // var colors = require('colors/safe); 9 // colors.red("foo") 10 // 11 // 12 require('./extendStringPrototype')();