parcoursup/node_modules/are-we-there-yet/node_modules/readable-stream/experimentalWarning.js
lalBi94 7bc56c09b5 $
2023-03-05 13:23:23 +01:00

18 lines
460 B
JavaScript

'use strict'
var experimentalWarnings = new Set();
function emitExperimentalWarning(feature) {
if (experimentalWarnings.has(feature)) return;
var msg = feature + ' is an experimental feature. This feature could ' +
'change at any time';
experimentalWarnings.add(feature);
process.emitWarning(msg, 'ExperimentalWarning');
}
function noop() {}
module.exports.emitExperimentalWarning = process.emitWarning
? emitExperimentalWarning
: noop;