1.1.0 • Published 7 months ago

convert-temp-npm v1.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago

Temperature Converter GPT

This package allows you to convert temperatures between Celsius and Fahrenheit. (Provided by ChatGPT)

Table of Contents

Installation

npm install convert-temp-npm

Usage

const { celsiusToFahrenheit, fahrenheitToCelsius } = require('convert-temp-npm');

const celsius = 30;
const fahrenheit = celsiusToFahrenheit(celsius);
console.log(`${celsius} grados Celsius son ${fahrenheit} grados Fahrenheit.`);

const newCelsius = fahrenheitToCelsius(fahrenheit);
console.log(`${fahrenheit} grados Fahrenheit son ${newCelsius} grados Celsius.`);
1.1.0

7 months ago

1.0.0

7 months ago