parcoursup/node_modules/mocha/lib/pending.js

17 lines
221 B
JavaScript
Raw Normal View History

2023-03-05 13:23:23 +01:00
'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;
}