1234567891011121314 |
- "use strict";
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports.default = warn;
- /** @deprecated Use `warning` instead. This will be removed in next major version */
- function warn(msg) {
- if (process.env.NODE_ENV !== 'production') {
- if (typeof console !== 'undefined' && console.warn) {
- console.warn(msg);
- }
- }
- }
|