MCPcopy
hub / github.com/immutable-js/immutable-js / skipWhile

Function skipWhile

src/CollectionImpl.js:449–451  ·  view source on GitHub ↗
(predicate, context)

Source from the content-addressed store, hash-verified

447 },
448
449 skipWhile(predicate, context) {
450 return reify(this, skipWhileFactory(this, predicate, context, true));
451 },
452
453 skipUntil(predicate, context) {
454 return this.skipWhile(not(predicate), context);

Callers

nothing calls this directly

Calls 2

reifyFunction · 0.90
skipWhileFactoryFunction · 0.90

Tested by

no test coverage detected