Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
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
  • npm
  • Socket score

Version published
Weekly downloads
2
increased by100%
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

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

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