详细说明: - 添加了V2版本的工作流页面和结果页面 - 更新了Serena记忆文件 - 添加了详细实施计划文档 - 优化了Vite配置 - 更新了项目文档CLAUDE.md - 构建了演示系统的dist版本 - 包含了exhibition-demo的完整依赖
34 lines
454 B
JavaScript
34 lines
454 B
JavaScript
'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
|