Temperature Conversion NPM Module (as requested by Jtryon from Livecoding.tv)
npm install temperature.conversion``javascript
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)
})
})
`
`javascript``
c2f 20
// returns 68
f2c 50
// returns 10