0.0.1 • Published 10 years ago

applier v0.0.1

Weekly downloads
2
License
ISC
Repository
github
Last release
10 years ago

Applier

Module for create applier functions

Installation

npm install --save applier

Usage

var applier = require('applier');
var hi = applier(console.log, "Hello,", new applier.Argument(0));

hi("World"); // Hello, world!

var nextSecond = applier(console.log, 'It is next second');

setInterval(nextSecond, 1000);

API

applier(fn, ...args)

Params:

  • fn function, whoose will call in applier with saves args
  • ...args args for call function, if among arguments will be Argument (Abstruction argument), then applier will change it to argument whoose get applier..

Return:

  • Applier

applier.Argument(id)

Params:

  • id - index of need param in call Applier

License

ISC