New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

new-interval

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

new-interval

A real Interval object

latest
Source
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source

new-interval Build Status

A real Interval object

Getting Started

Install the module with: npm install new-interval

// Only for Node.
var Interval = require('new-interval').Interval;

var interval = new Interval(3000, function(){
	doSomethingAwsome();
});
interval.start();
interval.clear();

// or the same can be acomplished by
var interval = Interval.set(3000, function(){
	doSomethingAwsome();
});

interval.clear();

Remember that Lo-Dash or Underscore are required to load before using Intervals!

Documentation

(Coming soon)

Examples

(Coming soon)

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality.

License

Copyright (c) 2014 Alan Szpigiel
Licensed under the MIT license.

Keywords

new-interval

FAQs

Package last updated on 15 Aug 2014

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