Sha256: 5f9beff594347ba6765b806ec36e25699be1407627e2ee91be5d609e40baacb8
Contents?: true
Size: 460 Bytes
Versions: 115
Compression:
Stored size: 460 Bytes
Contents
'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;
Version data entries
115 entries across 96 versions & 14 rubygems