📚 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:
15
frontend/node_modules/framer-motion/dist/es/animation/utils/is-none.mjs
generated
vendored
Normal file
15
frontend/node_modules/framer-motion/dist/es/animation/utils/is-none.mjs
generated
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
import { isZeroValueString } from '../../utils/is-zero-value-string.mjs';
|
||||
|
||||
function isNone(value) {
|
||||
if (typeof value === "number") {
|
||||
return value === 0;
|
||||
}
|
||||
else if (value !== null) {
|
||||
return value === "none" || value === "0" || isZeroValueString(value);
|
||||
}
|
||||
else {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
export { isNone };
|
||||
Reference in New Issue
Block a user