conv-weight

0.1.0 • Public • Published

Convert weight units

Weight units converter

Description of the module

Se hace conversión entre las siguientes unidades:

  • 'kg' Kilogramo
  • 'lb' Libra
  • 'stone' stone
  • 'gr' gramo
  • 'ton' toneladas
  • 'oz' onzas

La función recibe un objeto con dos parametros uno son los datos del dato de entrada y el otro es un arreglo que dice que unidades son las que quiere convertir

Installation

npm install conv-weight

Uso

import convWeight from 'conv-weight'

const param = {
    in: { weight: 10, unit: "kg" },
    out: ["kg", "lb", "stone", "gr", "ton", "oz"]
};
const result = {
    kg: 10,
    lb: 22.04624,
    stone: 1.57473,
    gr: 10000,
    ton: 0.01,
    oz:352.73991
};
const conv = convWeight(param);

Créditos

Licencia

MIT

Package Sidebar

Install

npm i conv-weight

Weekly Downloads

1

Version

0.1.0

License

MIT

Last publish

Collaborators

  • alanbasu