wait-sync

1.0.1 • Public • Published

Build Status

wait-sync

a simple non-blocking-yet-synchronous wait(seconds) module


Install

npm install sync-rest-client

Usage

const waitSync = require('wait-sync');
 
console.log(1);
 
// setTimeout is async - but that's ok - since
// waitSync is non-blocking
setTimeout(() => console.log(2), 1000);
 
waitSync(1.5); // wait 1.5 seconds - !synchronously!
 
console.log(3);
 
// outputs 1, 2, and then 3 (as expected)

Test

npm run test

Related

/wait-sync/

    Package Sidebar

    Install

    npm i wait-sync

    Weekly Downloads

    519

    Version

    1.0.1

    License

    MIT

    Last publish

    Collaborators

    • ujc