A collection of simple temperature operations
npm install temperature
npm i temperature
`
Usage
`javascript
// import only the functions you need
import {celsiusToFahrenheit} from 'temperature';
const celsius = 100;
const fahrenheit = celsiusToFahrenheit(celsius); // == 212
// ... do stuff with awesome temperatures!
`
Available converters
All the following methods take input of type number and
return output of type number`