index.js 362 B

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