parcoursup/node_modules/mocha/lib/pending.js
lalBi94 7bc56c09b5 $
2023-03-05 13:23:23 +01:00

17 lines
221 B
JavaScript

'use strict';
/**
@module Pending
*/
module.exports = Pending;
/**
* Initialize a new `Pending` error with the given message.
*
* @param {string} message
*/
function Pending(message) {
this.message = message;
}