Repository URL to install this package:
Version:
0.6.0 ▾
|
.. |
.npmignore |
.travis.yml |
LICENSE |
README.md |
index.js |
package.json |
test.js |
Iterator over lines in a string:
npm install next-line
var next = require('next-line')('foo\r\nbar\nbaz') console.log(next()) // => foo console.log(next()) // => bar console.log(next()) // => baz console.log(next()) // => null
MIT