You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

array-spiral

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

array-spiral

Iterator for Array until ES2015, It will return element infinity

1.0.1
latest
Source
npmnpm
Version published
Weekly downloads
6
200%
Maintainers
1
Weekly downloads
 
Created
Source

array-spiral

Extended Array with spiral iterator. (Migrated from iterarry)

Install

$ npm install --save array-spiral

Usage

var arr = new ArraySpiral();
var itr;

arr.push(1, 2, 3, 4, 5);
itr = arr.iterator;

console.log(itr.next());
//=> 0

console.log(itr.prev());
//=> 1

// re-gain with iterator
itr = ArraySpiral.iterator(arr.concat([6, 7, 8, 9]));
console.log(itr.next());

API

ArraySpiral

ArraySpiral::iterator(new Array())

Create an Array supporting iterator

ArraySpiral.iterator

Return iterator from Array instance created with ArraySpiral

Iterator

next()

Returns next item

prev()

Returns previous item

License

MIT © Jimmy Moon

Keywords

Array

FAQs

Package last updated on 02 Jul 2016

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