js-algorithms/node_modules/mocha/lib/pending.js

17 lines
215 B
JavaScript
Raw Permalink Normal View History

2015-07-24 06:44:18 +00:00
/**
* Expose `Pending`.
*/
module.exports = Pending;
/**
* Initialize a new `Pending` error with the given message.
*
* @param {String} message
*/
function Pending(message) {
this.message = message;
}