22 lines
479 B
JavaScript
22 lines
479 B
JavaScript
|
"use strict";
|
||
|
Object.defineProperty(exports, "__esModule", {
|
||
|
value: true
|
||
|
});
|
||
|
Object.defineProperty(exports, "warnOnce", {
|
||
|
enumerable: true,
|
||
|
get: function() {
|
||
|
return warnOnce;
|
||
|
}
|
||
|
});
|
||
|
let warnOnce = (_)=>{};
|
||
|
if (process.env.NODE_ENV !== "production") {
|
||
|
const warnings = new Set();
|
||
|
warnOnce = (msg)=>{
|
||
|
if (!warnings.has(msg)) {
|
||
|
console.warn(msg);
|
||
|
}
|
||
|
warnings.add(msg);
|
||
|
};
|
||
|
}
|
||
|
|
||
|
//# sourceMappingURL=warn-once.js.map
|