1
0
mirror of https://gitee.com/onvia/ccc-tnt-psd2ui synced 2025-06-28 13:54:06 +00:00

18 lines
460 B
JavaScript
Raw Normal View History

2023-07-24 10:36:46 +08:00
'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;