@bkaunda/temperature-converter
v1.0.0
Published
Convert temperatures between farenheit and celsius
Downloads
13
Readme
temperature-converter
A simple Node.js module to help you convert temperature between farenheit and celsius
Example
const {farenheitToCelsius, celsiusToFarenheit } = require('@npmusername/temperature-converter');
const celsius = farenheitToCelsius(100);
console.log(`100°F is ${celsius}°C`);
const farenheit = celsiusToFarenheit(37);
console.log(`37°C is ${farenheit}°F`);
Running Tests
To run tests and ensure that this module is working as expected, navigate to the module's root directory and execute:
$ npm run test
License
This project is licensed under the MIT License.