0.0.2 • Published 11 years ago

meanwhile v0.0.2

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

NAME

meanwhile(3)

SYNOPSIS

Some setInterval sugar. A program keeps running, meanwhile a check is performed at a specified interval and if the resut is true, a callback gets called.

EXAMPLE

var meanwhile = require('meanwhile')
var x = false

meanwhile(
  function() { return x },
  function() { console.log('x is now true') }
)

x = true