take-while

v0.9.6arrow_drop_down
v0.9.6
STATUS
Passing
DOWNLOADS
2
VISIBILITY
Public
PUBLISHED
5 years ago
SIZE
1 KB
Returns a new list containing the first `n` elements of a given list,
1 contributor
Install take-while as a package?
Copied
npm i @bit/justin-capalbo.ramda.take-while
Set Bit as a scoped registryLearn more
npm config set '@bit:registry' https://node.bit.cloud
Component Example
React
React
Vue
Angular
React Native
Add dependency... help_outline
Just
import
any of the 1 million components
and packages in Bit or NPM to the example.
import Button from '@bit/grommet.grommet.button';
import Lodash from 'lodash';
toggle layout
No preview available
modifieddraft
chevron_left
chevron_right
takeWhile (
fn:Function,
xs:Array
) : Array

Returns a new list containing the first n elements of a given list, passing each value to the supplied predicate function, and terminating when the predicate function returns false. Excludes the element that caused the predicate function to fail. The predicate function is passed one argument: (value).

Dispatches to the takeWhile method of the second argument, if present.

Acts as a transducer if a transformer is given in list position.

Example
const isNotFour = x => x !== 4;

     R.takeWhile(isNotFour, [1, 2, 3, 4, 3, 2, 1]); //=> [1, 2, 3]

     R.takeWhile(x => x !== 'd' , 'Ramda'); //=> 'Ram'
Arguments
fn: Function

The function called per iteration.

xs: Array

The collection to iterate over.

Returns
Array

A new array.

Help and resources