temperature.conversion
v2.0.0
Published
Temperature Conversion NPM Module (as requested by Jtryon from Livecoding.tv)
Downloads
10
Maintainers
Readme
temperature.conversion
Temperature Conversion NPM Module (as requested by Jtryon from Livecoding.tv)
By Chris Cates :star:
Email: [email protected]
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