2.0.0 • Published 8 years ago

temperature.conversion v2.0.0

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

temperature.conversion Coverage Status Build Status

Temperature Conversion NPM Module (as requested by Jtryon from Livecoding.tv)

By Chris Cates :star:

Email: hello@chriscates.ca

Usage (As described in tests.js)

describe('Celsius to Fahrenheit', () => {
  it('Should return 32', () => {
    assert(calc.celsiusToFahrenheit(0),32)
  })
  it('Should return 77', () => {
    assert(calc.celsiusToFahrenheit(25),77)
  })
  it('Should return 50', () => {
    assert(calc.celsiusToFahrenheit(50),122)
  })
})

describe('Fahrenheit to Celsius', () => {
  it('Should return -15', () => {
    assert(calc.fahrenheitToCelsius(5), -15)
  })
  it('Should return 10', () => {
    assert(calc.fahrenheitToCelsius(50), 10)
  })
  it('Should return 40', () => {
    assert(calc.fahrenheitToCelsius(104), 40)
  })
})

Usage as command line tool

c2f 20
// returns 68
f2c 50
// returns 10