converture

0.2.0 • Public • Published

🌡 Converture 🌡

Travis Build

Converture is a temperature converter, including functions to convert from/to Celsius, Fahrenheit and Kelvin. The returned value is rounded to two decimal places.

Install

npm install converture

Usage

// Using CommonJS
const convert = require('converture').default;
 
// OR
// Using ES6 modules
import convert from 'converture';
 
convert.kelvin(50).toCelsius();
// => -223.15
convert.kelvin(50).toFahrenheit();
// => -369.67
convert.celsius(20).toKelvin();
// => 293.15
convert.celsius(20).toFahrenheit();
// => 68
convert.fahrenheit(44).toKelvin();
// => 279.82
convert.fahrenheit(44).toCelsius();
// => 6.67
 
// You could also import a single function
import { kelvin } from 'converture';
 
kelvin(50).toFahrenheit();
// => -369.67

License

MIT © Zsolt Meszaros

Dependencies (0)

    Dev Dependencies (7)

    Package Sidebar

    Install

    npm i converture

    Weekly Downloads

    0

    Version

    0.2.0

    License

    MIT

    Unpacked Size

    4.33 kB

    Total Files

    4

    Last publish

    Collaborators

    • zsoltime