Upsilon-VsCode/Client/node_modules/mocha/lib/pending.js

17 lines
227 B
JavaScript
Raw Normal View History

2019-02-17 17:07:28 +00:00
'use strict';
/**
* Expose `Pending`.
*/
module.exports = Pending;
/**
* Initialize a new `Pending` error with the given message.
*
* @param {string} message
*/
function Pending (message) {
this.message = message;
}