1.5.0 • Published 2 years ago

make-it-poll v1.5.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

MAKE IT PULL

install

npm i make-it-poll

Usage

index.js

const makeItPoll = require('make-it-poll');
const obj = makeItPoll(
  () =>
    new Promise((resolve, reject) => {
      console.log('exec promise');
      resolve();
    }),
  1000,
  5000,
  3
);
obj.startGetDataPoll();
setTimeout(() => {
  obj.stopGetDataPoll();
}, 5000);


//exec promise
//exec promise
//exec promise
//exec promise
//exec promise
1.5.0

2 years ago

1.4.0

2 years ago

1.3.0

2 years ago

1.2.0

2 years ago

1.1.0

2 years ago

1.0.0

2 years ago