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

Function takeWhile

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

Source from the content-addressed store, hash-verified

467 },
468
469 takeWhile(predicate, context) {
470 return reify(this, takeWhileFactory(this, predicate, context));
471 },
472
473 takeUntil(predicate, context) {
474 return this.takeWhile(not(predicate), context);

Callers

nothing calls this directly

Calls 2

reifyFunction · 0.90
takeWhileFactoryFunction · 0.90

Tested by

no test coverage detected