index.js 369 B

1234567891011121314
  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
  6. // native String will not be touched:
  7. //
  8. // var colors = require('colors/safe);
  9. // colors.red("foo")
  10. //
  11. //
  12. require('./extendStringPrototype')();