CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes45downloads
experimentalWarning.js18 linesDownload Raw Back to readable-stream
1'use strict'2 3var experimentalWarnings = new Set();4 5function emitExperimentalWarning(feature) {6  if (experimentalWarnings.has(feature)) return;7  var msg = feature + ' is an experimental feature. This feature could ' +8       'change at any time';9  experimentalWarnings.add(feature);10  process.emitWarning(msg, 'ExperimentalWarning');11}12 13function noop() {}14 15module.exports.emitExperimentalWarning = process.emitWarning16  ? emitExperimentalWarning17  : noop;18 
basant307/AI_Governance_Project · CoolFace