https://github.com/ad-si/rad2deg
Convert radians to degree
https://github.com/ad-si/rad2deg
Last synced: 6 months ago
JSON representation
Convert radians to degree
- Host: GitHub
- URL: https://github.com/ad-si/rad2deg
- Owner: ad-si
- License: mit
- Created: 2015-05-08T12:20:20.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-05-08T12:48:45.000Z (over 10 years ago)
- Last Synced: 2025-03-01T04:11:12.323Z (7 months ago)
- Language: JavaScript
- Size: 129 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Rad2deg
Convert radians to degrees
## Installation
```sh
npm install rad2deg
```## Usage
```js
var rad2deg = require('rad2deg')console.log(rad2deg(Math.PI))
// Logs 180
```