Hacked By AnonymousFox

Current Path : /usr/lib/node_modules/npm/node_modules/readable-stream/
Upload File :
Current File : //usr/lib/node_modules/npm/node_modules/readable-stream/experimentalWarning.js

'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;

Hacked By AnonymousFox1.0, Coded By AnonymousFox