Simple utility library for removing the first X amount of lines from an inputstream
npm install striplines
npm install striplines --save
`Usage
Here is a basic example showing how to remove lines from a file and pipe it to another file.`js
"use strict";var striplines = require('striplines');
var fs = require('fs');
var input = fs.createReadStream('./input.txt');
var output = fs.createWriteStream('./output.txt');
input
.pipe(striplines(10))
.pipe(output);
``
It's that simple.
##License
MIT