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.

pending.js 196B

123456789101112
  1. 'use strict';
  2. module.exports = Pending;
  3. /**
  4. * Initialize a new `Pending` error with the given message.
  5. *
  6. * @param {string} message
  7. */
  8. function Pending(message) {
  9. this.message = message;
  10. }