mirror of
https://github.com/facebook/react.git
synced 2026-02-24 12:43:00 +00:00
* Manually join extra attributes in warning This prevents a bug where Chrome reports `Array(n)` where `n` is the size of the array. * Prettier * Stringify all %s replaced symbols in warning * Eliminate extra string coercion * Pass args through with spread, convert all arguments to strings * Rename strings to stringArgs
45 lines
1.3 KiB
JavaScript
45 lines
1.3 KiB
JavaScript
/**
|
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
/**
|
|
* Similar to invariant but only logs a warning if the condition is not met.
|
|
* This can be used to log issues in development environments in critical
|
|
* paths. Removing the logging code for production environments will keep the
|
|
* same logic and follow the same code paths.
|
|
*/
|
|
|
|
let warningWithoutStack = () => {};
|
|
|
|
if (__DEV__) {
|
|
warningWithoutStack = function(condition, format, ...args) {
|
|
if (format === undefined) {
|
|
throw new Error(
|
|
'`warningWithoutStack(condition, format, ...args)` requires a warning ' +
|
|
'message argument',
|
|
);
|
|
}
|
|
if (condition) {
|
|
return;
|
|
}
|
|
if (typeof console !== 'undefined') {
|
|
const stringArgs = args.map(item => '' + item);
|
|
console.error('Warning: ' + format, ...stringArgs);
|
|
}
|
|
try {
|
|
// --- Welcome to debugging React ---
|
|
// This error was thrown as a convenience so that you can use this stack
|
|
// to find the callsite that caused this warning to fire.
|
|
let argIndex = 0;
|
|
const message =
|
|
'Warning: ' + format.replace(/%s/g, () => args[argIndex++]);
|
|
throw new Error(message);
|
|
} catch (x) {}
|
|
};
|
|
}
|
|
|
|
export default warningWithoutStack;
|