Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@zacharyrankin/wait-for-it

zacharyrankin12MIT1.0.0

Utility for creating efficient auto-save features.

readme

wait-for-it Build Status

Utility for creating efficient auto-save features.

Usage

waitForIt.setup(function(data) {
  // Save data to server
}, 5000);

// Push some data
waitForIt.push({some: 'data'});

// ... and again
waitForIt.push({more: 'new data'});

Testing