Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

for-each-break

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

for-each-break

forEach, map and filter with break and return emulation

  • 0.2.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
137
increased by185.42%
Maintainers
1
Weekly downloads
 
Created
Source

for-each-break

experimental

Small utility library implementing forEach, map, filter, forEachRight, mapRight and filterRight functions with break and return emulation as if it was a regular for or while loop.

To simulate break return BREAK or RETURN, to simulate return return BREAK(value) or RETURN(value) both are equivalent but the one communicating the right intent should be used.

The functions assume this is an array like object so they should be invoked with .call(arrayLike, callback)

defines:

  • BREAK - used to break or return from loop, using BREAK to break out of loop is preferred since it communicates clear intention
  • RETURN - used to break or return from loop, using RETURN to break out of loop and return a value is preferred since it communicates clear intention
  • forEach - use to loop over array like object: forEach.call(arrayLike, callback, thisArg, defaultReturn)
  • map - use to map array like object, with early break or return: map.call(arrayLike, callback, thisArg)
  • filter - use to filter array like object, with early break or return: filter.call(arrayLike, callback, thisArg)
  • forEachRight - use to loop over array like object in reverse: forEach.call(arrayLike, callback, thisArg, defaultReturn)
  • mapRight - use to map array like object in reverse, with early break or return: map.call(arrayLike, callback, thisArg)
  • filterRight - use to filter array like object in reverse, with early break or return: filter.call(arrayLike, callback, thisArg)

Install

Use npm to install.

npm install for-each-break --save

Usage

NPM

License

MIT, see LICENSE.md for details.

Keywords

FAQs

Package last updated on 10 May 2018

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

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc