temperature.conversion

2.0.0 • Public • Published

temperature.conversion Coverage Status Build Status

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

By Chris Cates ⭐️

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

Package Sidebar

Install

npm i temperature.conversion

Weekly Downloads

1

Version

2.0.0

License

MIT

Last publish

Collaborators

  • itschriscates