pending.js 212 B

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