diff options
Diffstat (limited to 'sandbox/testAppNevena/Front/node_modules/readable-stream/experimentalWarning.js')
-rw-r--r-- | sandbox/testAppNevena/Front/node_modules/readable-stream/experimentalWarning.js | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/sandbox/testAppNevena/Front/node_modules/readable-stream/experimentalWarning.js b/sandbox/testAppNevena/Front/node_modules/readable-stream/experimentalWarning.js deleted file mode 100644 index 78e84149..00000000 --- a/sandbox/testAppNevena/Front/node_modules/readable-stream/experimentalWarning.js +++ /dev/null @@ -1,17 +0,0 @@ -'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; |