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

iterable-lookahead

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

iterable-lookahead

Iterable wrapper that add methods to read ahead or behind current item.

  • 2.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
180K
increased by4.45%
Maintainers
1
Weekly downloads
 
Created
Source

# iterable-lookahead

Greenkeeper badge Travis Build Status Coveralls NPM module NPM downloads

Iterable wrapper that add methods to read ahead or behind current item.

Installation

npm install --save iterable-lookahead

Usage

	const lookahead = require('iterable-lookahead');
	const iterable = lookahead([1, 2, 3, 4]);

	for (const item of iterable) {
		console.log({
			item,
			ahead: iterable.ahead(1),
			behind: iterable.behind(1)
		});
	}

or otherwise, using array spread syntax:

	const lookahead = require('iterable-lookahead');

	for (const [item, look] of lookahead.spread([1, 2, 3, 4])) {
		console.log({
			item,
			ahead: look.ahead(1),
			behind: look.behind(1)
		});
	}

License

The MIT License (MIT)

Copyright (c) 2016 Andrea Parodi

Keywords

FAQs

Package last updated on 28 Jun 2017

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