This commit is contained in:
2026-05-15 08:32:45 +02:00
parent fc2547bd59
commit 231006e61d
2143 changed files with 0 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
'use strict'
function reusify (Constructor) {
var head = new Constructor()
var tail = head
function get () {
var current = head
if (current.next) {
head = current.next
} else {
head = new Constructor()
tail = head
}
current.next = null
return current
}
function release (obj) {
tail.next = obj
tail = obj
}
return {
get: get,
release: release
}
}
module.exports = reusify