array-peek

1.0.212 • Public • Published

logomakr_5sisss

Build Status codecov npm GitHub license Maintenance Donate

extend array functionality to allow peek method.

peek vs forEach

peek as forEach allows you to execute a callback on each of the elements of an array, not affecting the content of itself.

The difference is that forEach returns void so no further processing can be done, while peek will return the array so you can continue the transformations necesary for your processing

Installation

add it to your project using npm install array-peek --save or yarn add array-peek

Usage

to use this package just add it before the usage of any array to extend its prototype. From then on you will have access to the peek function as seen in the next example.

require('array-peek')

[1,2,3]
    .peek(console.log)
    .map((value) => value * value)
    .peek(console.log)
    
//  Output:
//> 1
//> 2
//> 3
//> 1
//> 4
//> 9
Created my free logo at LogoMakr.com

Readme

Keywords

none

Package Sidebar

Install

npm i array-peek

Weekly Downloads

321

Version

1.0.212

License

MIT

Unpacked Size

7.1 kB

Total Files

10

Last publish

Collaborators

  • kanekotic