MCPcopy Index your code
hub / github.com/krasimir/react-in-patterns / warning

Function warning

code/redux/public/app.js:19649–19663  ·  view source on GitHub ↗

* Prints a warning in the console if it exists. * * @param {String} message The warning message. * @returns {void}

(message)

Source from the content-addressed store, hash-verified

19647 * @returns {void}
19648 */
19649function 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

Callers 15

checkPropTypesFunction · 0.85
checkTypeFunction · 0.85
createEnumTypeCheckerFunction · 0.85
createUnionTypeCheckerFunction · 0.85
app.jsFile · 0.85
warnFunction · 0.85
isAttributeNameSafeFunction · 0.85
initWrapperStateFunction · 0.85
updateWrapperFunction · 0.85
isMountedFunction · 0.85
catchErrorsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected