* Prints a warning in the console if it exists. * * @param {String} message The warning message. * @returns {void}
(message)
| 19647 | * @returns {void} |
| 19648 | */ |
| 19649 | function warning(message) { |
| 19650 | /* eslint-disable no-console */ |
| 19651 | if (typeof console !== 'undefined' && typeof console.error === 'function') { |
| 19652 | console.error(message); |
| 19653 | } |
| 19654 | /* eslint-enable no-console */ |
| 19655 | try { |
| 19656 | // This error was thrown as a convenience so that if you enable |
| 19657 | // "break on all exceptions" in your console, |
| 19658 | // it would pause the execution at this line. |
| 19659 | throw new Error(message); |
| 19660 | /* eslint-disable no-empty */ |
| 19661 | } catch (e) {} |
| 19662 | /* eslint-enable no-empty */ |
| 19663 | } |
| 19664 | },{}],52:[function(require,module,exports){ |
| 19665 | (function (process){ |
| 19666 | /** @license React v16.3.0-alpha.3 |
no outgoing calls
no test coverage detected