drop-while
Returns an array of the items in coll starting from the first item for which pred(item) logical false, i.e. false, null, undefined
{}
Install
npm i -S drop-while
Usage
var assert = ;var dropWhile = ;var is = ; var arr = -1 -2 -6 -7 1 2 3 4 -5 -6 0 1;var expect = 1 2 3 4 -5 -6 0 1;assert; // true