An open API service indexing awesome lists of open source software.

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

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
```