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

https://github.com/ad-si/deg2rad

Convert degrees to radians
https://github.com/ad-si/deg2rad

Last synced: 6 months ago
JSON representation

Convert degrees to radians

Awesome Lists containing this project

README

          

# Deg2rad

Convert degrees to radians

## Installation

```sh
npm install deg2rad
```

## Usage

```js
var deg2rad = require('deg2rad')

console.log(deg2rad(180))

// Logs 3.141592653589793 (Math.PI)
```