0.0.1 • Published 11 years ago

part-next-tick v0.0.1

Weekly downloads
4
License
-
Repository
-
Last release
11 years ago

Part Next Tick

Node/browser process.nextTick implementation.

In the browser, it will try requestAnimationFrame and fallback to setTimeout. In node.js, it just uses process.nextTick.

Installation

node.js:

$ npm install part-next-tick

browser:

$ component install part/next-tick

Example

var nextTick = require('part-next-tick');

nextTick(function(){
  console.log('after');
});

console.log('before');

Licence

MIT