A NodeJS module for converting newlines to line breaks
npm install nl2brnl2br
=====
nl2br - A NodeJS module for converting newlines to line breaks
Based on this answer in StackOverflow
##Install
```
$ npm install nl2br
javascript
var nl2br = require('nl2br');// XHTML Way
nl2br('Base\nballs'); // returns 'Base
balls'
// Non-XHTML Way
nl2br('Base\nballs', false); // returns 'Base
balls'
``