1.0.1 • Published 9 years ago

strip-lines v1.0.1

Weekly downloads
1,256
License
MIT
Repository
github
Last release
9 years ago

strip-lines

Remove n lines from the beginning of a string.

Build status js-standard-style

Installation

npm install strip-lines

Usage

var strip = require('strip-lines')

var str = 'foo\r\nbar\nbaz'

// remove the first 2 lines from `str`
console.log(strip(str, 2)) // => baz

API

The module exposes a single function which takes two arguments:

strip(string, lines)
  • string - The string that should be parsed
  • lines - The number of lines to remove from the beginning of the provided string

License

MIT