📚 Documentação inicial do ALETHEIA
- MANUAL-PRODUTO.md: Manual do usuário final - MANUAL-VENDAS.md: Estratégia comercial e vendas - MANUAL-TECNICO.md: Infraestrutura e deploy - README.md: Visão geral do projeto
This commit is contained in:
18
frontend/node_modules/motion-utils/dist/es/errors.mjs
generated
vendored
Normal file
18
frontend/node_modules/motion-utils/dist/es/errors.mjs
generated
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
import { noop } from './noop.mjs';
|
||||
|
||||
let warning = noop;
|
||||
let invariant = noop;
|
||||
if (process.env.NODE_ENV !== "production") {
|
||||
warning = (check, message) => {
|
||||
if (!check && typeof console !== "undefined") {
|
||||
console.warn(message);
|
||||
}
|
||||
};
|
||||
invariant = (check, message) => {
|
||||
if (!check) {
|
||||
throw new Error(message);
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
export { invariant, warning };
|
||||
Reference in New Issue
Block a user