Initial Save
This commit is contained in:
20
node_modules/apollo-utilities/lib/util/warnOnce.js
generated
vendored
Normal file
20
node_modules/apollo-utilities/lib/util/warnOnce.js
generated
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
var environment_1 = require("./environment");
|
||||
var haveWarned = Object.create({});
|
||||
function warnOnceInDevelopment(msg, type) {
|
||||
if (type === void 0) { type = 'warn'; }
|
||||
if (!environment_1.isProduction() && !haveWarned[msg]) {
|
||||
if (!environment_1.isTest()) {
|
||||
haveWarned[msg] = true;
|
||||
}
|
||||
if (type === 'error') {
|
||||
console.error(msg);
|
||||
}
|
||||
else {
|
||||
console.warn(msg);
|
||||
}
|
||||
}
|
||||
}
|
||||
exports.warnOnceInDevelopment = warnOnceInDevelopment;
|
||||
//# sourceMappingURL=warnOnce.js.map
|
||||
Reference in New Issue
Block a user