* Creates a slice of `array` excluding elements dropped from the beginning. * Elements are dropped until `predicate` returns falsey. The predicate is * invoked with three arguments: (value, index, array). * * @static * @memberOf _ * @since 3.0.0
(array, predicate)
| 17792 | * // => objects for ['barney', 'fred', 'pebbles'] |
| 17793 | */ |
| 17794 | function dropWhile(array, predicate) { |
| 17795 | return (array && array.length) |
| 17796 | ? baseWhile(array, getIteratee(predicate, 3), true) |
| 17797 | : []; |
| 17798 | } |
| 17799 | |
| 17800 | /** |
| 17801 | * Fills elements of `array` with `value` from `start` up to, but not |
nothing calls this directly
no test coverage detected