once
Only call a function once.
usage
1 | var once = require('once') |
Or add to the Function.prototype in a responsible way:
1 | // only has to be done once |
Ironically, the prototype feature makes this module twice as complicated as necessary.
To check whether you function has been called, use fn.called. Once the function is called for the first time the return value of the original function is saved in fn.value and subsequent calls will continue to return this value.
1 | var once = require('once') |
once.strict(func)
Throw an error if the function is called twice.
Some functions are expected to be called only once. Using once for them would potentially hide logical errors.
In the example below, the greet function has to call the callback only once:
1 | function greet (name, cb) { |