UNPKG

d2-ui

Version:
16 lines (12 loc) 212 B
/** * Expose `Pending`. */ module.exports = Pending; /** * Initialize a new `Pending` error with the given message. * * @param {string} message */ function Pending(message) { this.message = message; }