Socket
Book a DemoInstallSign in
Socket

array-peek

Package Overview
Dependencies
Maintainers
0
Versions
232
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

array-peek

peek functionality for arrays, allow execution of functionality for each element of the array and continue procesing of the same

1.0.233
latest
Source
npmnpm
Version published
Maintainers
0
Created
Source

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

FAQs

Package last updated on 27 Jan 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.