Convert degrees into directions
npm install degrees-to-directionConvert degrees into directions. Useful for windspeed, etc.
``sh`
$ npm install degrees-to-direction
`js
var d2d = require('degrees-to-direction');
d2d(0); // "N"
d2d(10); // "N"
d2d(45); // "ENE"
d2d(180); // "S"
`
You may need to install mocha globally to run the tests.
```
$ npm install
$ npm test