@eotl/core
Version:
Assortment of data structures, Vue.js components, and utilities across EOTL apps and sites.
64 lines (63 loc) • 921 B
JavaScript
;
const sizes = {
sm: {
width: "10 cm",
length: "25 cm",
height: "12 cm"
},
md: {
width: "25 cm",
length: "50 cm",
height: "12 cm"
},
lg: {
width: "25 cm",
length: "50 cm",
height: "20 cm"
},
xl: {
width: "50 cm",
length: "100 cm",
height: "20 cm"
}
};
const currency = {
eur: {
iso: "eur",
symbol: "€"
},
gbp: {
iso: "gbp",
symbol: "£"
},
usd: {
iso: "usd",
symbol: "$"
}
};
const weights = {
light: {
name: "Light",
kg: "5 kg or less"
},
average: {
name: "Average",
kg: "5 - 15 kg"
},
heavy: {
name: "Heavy",
kg: "15 - 25 kg"
},
very: {
name: "Very Heavy",
kg: "25 - 50 kg"
},
crazy: {
name: "Crazy",
kg: "50+ kg"
}
};
exports.currency = currency;
exports.sizes = sizes;
exports.weights = weights;
//# sourceMappingURL=Weights-Cy7jEEqn.cjs.map