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

cycle-array

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

cycle-array

Cycle through array values

  • 0.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

cycle-array Build Status

Cycle through array values

Use Case

I wanted to create a component that rotated a set of images, looping back to the start.

var Cycle = require('cycle-array'),
    cycle = new Cycle(),
    image = [ '/img1.png', '/img2.png', '/img3.png' ]

myComponent.on('interval', function (state) { 
  state.set('image.url', cycle(image)); // sets image.url to a new image on each call
});

Each call to cycle() will return the next array value, looping back to index 0.

Installation

Download node at nodejs.org and install it, if you haven't already.

npm install cycle-array --save

Notes

I kind of hate the Cycle/new Cycle() pattern, but it was the quickest way to keep multiple instances from stomping on one another. I'm going to revist this with ES6 syntax for fun later.

License

MIT

Keywords

FAQs

Package last updated on 21 Feb 2015

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