holding

3.1.1 • Public • Published

holding

Holding a callback for some times

NPM Version Download Status Dependencies

Installation

$ npm install holding

API

const holding = require('holding');
const done = holding(2, function() {
  console.log(this, 'called');
}, this);
 
done();
done();
done(); // it works
 
done.times; // show called times
done.called; // show fn call status

holding(n, fn, context)

  • n - {Number}

    holding times, it will execute fn after n times.

  • fn - {Function}

    holding callback.

  • context - {Any}

    fn context.

holding(n, fn, context).times

  • show called times.

holding(n, fn, context).called

  • show fn call status.

holding.assert(n, fn, context)

  • function for assertion testing, will throw error if call times out of range.

License

MIT

Package Sidebar

Install

npm i holding

Weekly Downloads

3

Version

3.1.1

License

MIT

Unpacked Size

6.41 kB

Total Files

6

Last publish

Collaborators

  • nuintun