tempconverter2025
v1.0.0
Published
Simple temperature converter in JS
Downloads
236
Readme
tempconverter2025
A simple JavaScript library to convert temperatures between Celsius and Fahrenheit.
Installation
npm install tempconverter2025Usage
const { celsiusToFahrenheit, fahrenheitToCelsius } = require('tempconverter2025');
console.log(celsiusToFahrenheit(0)); // 32
console.log(fahrenheitToCelsius(212)); // 100