- 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
10 lines
213 B
JavaScript
10 lines
213 B
JavaScript
function getValueTransition(transition, key) {
|
|
return transition
|
|
? transition[key] ||
|
|
transition["default"] ||
|
|
transition
|
|
: undefined;
|
|
}
|
|
|
|
export { getValueTransition };
|