From a3f9b96a85e6a4b8a3deb0920ccbc64aa6e7bbd5 Mon Sep 17 00:00:00 2001 From: MarcioJRGodoi Date: Wed, 9 Oct 2024 15:10:09 -0300 Subject: [PATCH] fix: inclusao Unidade Unidade --- src/unidades_medida.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/unidades_medida.ts b/src/unidades_medida.ts index 27542ca..9651acd 100644 --- a/src/unidades_medida.ts +++ b/src/unidades_medida.ts @@ -75,4 +75,11 @@ export const unidades_medida: { normalizar: (valor: number) => valor * 1000, tipo: "comprimento", }, + { + unidade: "UN", + nome: "Unidade", + unidade_normalizada: "Un", + normalizar: (valor: number) => valor, + tipo: "Unitario", + }, ]