You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
460 B
18 lines
460 B
'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;
|