0.1.0 • Published 6 years ago

conv-weight v0.1.0

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

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