UNPKG
gabriel-f
Version:
latest (1.3.0)
1.3.0
1.2.2
1.2.1
1.2.0
1.1.0
1.0.0
A package to convert celsius to fahrenheit
github.com/0xflotus/gabriel-f
gabriel-f
/
README.md
13 lines
(8 loc)
•
188 B
Markdown
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
## Install
`yarn
add
gabriel-f`
## Usage
```javascript
const
{ fahrenheit, celsius } = require(
'gabriel-f'
); console.log(fahrenheit(
1
));
// 33.8
console.log(celsius(
1
));
// -17.22
```