mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
417 B
22 lines
417 B
9 years ago
|
var wrappy = require('wrappy')
|
||
|
module.exports = wrappy(once)
|
||
|
|
||
|
once.proto = once(function () {
|
||
|
Object.defineProperty(Function.prototype, 'once', {
|
||
|
value: function () {
|
||
|
return once(this)
|
||
|
},
|
||
|
configurable: true
|
||
|
})
|
||
|
})
|
||
|
|
||
|
function once (fn) {
|
||
|
var f = function () {
|
||
|
if (f.called) return f.value
|
||
|
f.called = true
|
||
|
return f.value = fn.apply(this, arguments)
|
||
|
}
|
||
|
f.called = false
|
||
|
return f
|
||
|
}
|