pending.js 221 B

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