* 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 * @category Array
(array, predicate)
| 14798 | * // => objects for ['barney', 'fred', 'pebbles'] |
| 14799 | */ |
| 14800 | function dropWhile(array, predicate) { |
| 14801 | return (array && array.length) |
| 14802 | ? baseWhile(array, getIteratee(predicate, 3), true) |
| 14803 | : []; |
| 14804 | } |
| 14805 | |
| 14806 | /** |
| 14807 | * Fills elements of `array` with `value` from `start` up to, but not |
nothing calls this directly
no test coverage detected