"use strict"; var __defProp = Object.defineProperty; var __getOwnPropDesc = Object.getOwnPropertyDescriptor; var __getOwnPropNames = Object.getOwnPropertyNames; var __hasOwnProp = Object.prototype.hasOwnProperty; var __export = (target, all) => { for (var name in all) __defProp(target, name, { get: all[name], enumerable: true }); }; var __copyProps = (to, from, except, desc) => { if (from && typeof from === "object" || typeof from === "function") { for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable }); } return to; }; var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod); var unidades_medida_exports = {}; __export(unidades_medida_exports, { siglas_unidades_medida: () => siglas_unidades_medida, unidades_medida: () => unidades_medida }); module.exports = __toCommonJS(unidades_medida_exports); var siglas_unidades_medida = /* @__PURE__ */ ((siglas_unidades_medida2) => { siglas_unidades_medida2["UN"] = "UN"; siglas_unidades_medida2["KG"] = "KG"; siglas_unidades_medida2["TON"] = "TON"; siglas_unidades_medida2["g"] = "g"; siglas_unidades_medida2["M\xB3"] = "M\xB3"; siglas_unidades_medida2["Lt"] = "Lt"; return siglas_unidades_medida2; })(siglas_unidades_medida || {}); const unidades_medida = [ { sigla_unidade: "KG", nome: "Quilograma", sigla_normalizada: "KG", normalizar: (valor) => valor, tipo: "massa" }, { sigla_unidade: "g", nome: "Grama", sigla_normalizada: "KG", normalizar: (valor) => valor / 1e3, tipo: "massa" }, { sigla_unidade: "TON", nome: "Tonelada", sigla_normalizada: "KG", normalizar: (valor) => valor * 1e3, tipo: "massa" }, { sigla_unidade: "Lt", nome: "Litro", sigla_normalizada: "Lt", normalizar: (valor) => valor, tipo: "volume" }, { sigla_unidade: "M\xB3", nome: "Metro C\xFAbico", sigla_normalizada: "Lt", normalizar: (valor) => valor * 1e3, tipo: "volume" }, { sigla_unidade: "UN", nome: "Unidade", sigla_normalizada: "UN", normalizar: (valor) => valor, tipo: "unidade" } ]; // Annotate the CommonJS export names for ESM import in node: 0 && (module.exports = { siglas_unidades_medida, unidades_medida });