Dieses Repository beinhaltet HTML- und Javascript Code zur einer NotizenWebApp auf Basis von Web Storage. Zudem sind Mocha/Chai Tests im Browser enthalten. https://meinenotizen.netlify.app/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.js 369B

12345678910111213
  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')();