redux-observable-es6-compat
Version:
This is build from redux-observable (https://github.com/redux-observable/redux-observable) but fix errors in es2015
25 lines (24 loc) • 787 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var deprecationsSeen = {};
exports.resetDeprecationsSeen = function () {
deprecationsSeen = {};
};
var consoleWarn = (typeof console === 'object' && typeof console.warn === 'function')
? function () {
var args = [];
for (var _i = 0; _i < arguments.length; _i++) {
args[_i] = arguments[_i];
}
return console.warn.apply(console, args);
}
: function () { };
exports.deprecate = function (msg) {
if (!deprecationsSeen[msg]) {
deprecationsSeen[msg] = true;
consoleWarn("redux-observable | DEPRECATION: " + msg);
}
};
exports.warn = function (msg) {
consoleWarn("redux-observable | WARNING: " + msg);
};