From e4f8349dd251e8fcc6cbae6f28aaea095ff7733d Mon Sep 17 00:00:00 2001 From: Esteban Date: Tue, 16 Nov 2021 21:11:11 +0100 Subject: [PATCH] Remove 'packages/shared/invariant.js' (#22779) --- packages/shared/invariant.js | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 packages/shared/invariant.js diff --git a/packages/shared/invariant.js b/packages/shared/invariant.js deleted file mode 100644 index 68a1928c02d38..0000000000000 --- a/packages/shared/invariant.js +++ /dev/null @@ -1,26 +0,0 @@ -/** - * Copyright (c) Facebook, Inc. and its affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - * - */ - -/** - * Use invariant() to assert state which your program assumes to be true. - * - * Provide sprintf-style format (only %s is supported) and arguments - * to provide information about what broke and what you were - * expecting. - * - * The invariant message will be stripped in production, but the invariant - * will remain to ensure logic does not differ in production. - */ - -export default function invariant(condition, format, a, b, c, d, e, f) { - // eslint-disable-next-line react-internal/prod-error-codes - throw new Error( - 'Internal React error: invariant() is meant to be replaced at compile ' + - 'time. There is no runtime version.', - ); -}