pending.js 196 B

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. }