Stop tracking node_modules

This commit is contained in:
makearmy 2026-03-04 21:13:49 -05:00
parent d1fc24f873
commit f7802f5d7b
20990 changed files with 0 additions and 3016930 deletions

View file

@ -1,15 +0,0 @@
var isProduction = process.env.NODE_ENV === 'production';
var prefix = 'Invariant failed';
function invariant(condition, message) {
if (condition) {
return;
}
if (isProduction) {
throw new Error(prefix);
}
var provided = typeof message === 'function' ? message() : message;
var value = provided ? "".concat(prefix, ": ").concat(provided) : prefix;
throw new Error(value);
}
export { invariant as default };