frumpy:一个小巧的 JS 事件调度器

时间:2024-07-29 06:22:22
【文件属性】:

文件名称:frumpy:一个小巧的 JS 事件调度器

文件大小:20KB

文件格式:ZIP

更新时间:2024-07-29 06:22:22

JavaScript

邋遢 一个很小的(<1k)事件调度器,具有很少的功能和意见。 例子 编写一些与应用程序模型交互的例程。 function log (model) { // No return value; model will not be updated. console.log(model); } function ticking (model) { // Update the model return Frumpy.copy(model, { foo: model.foo + 5 }); } 然后创建一个Frumpy实例并将其连接起来: var model = { foo: 0 }; var handlers = [ [ 'tikTok', ticking ], [ 'model:change', log ] ]; var f = ne


【文件预览】:
frumpy-master
----.travis.yml(36B)
----package.json(868B)
----tasks()
--------index.js(2KB)
--------template.hogan(2KB)
--------server.js(971B)
--------method.hogan(888B)
--------rebuild-gh-pages.sh(434B)
--------style.css(5KB)
----test()
--------frumpy_spec.js(4KB)
----src()
--------frumpy.js(9KB)
--------plugins()
--------examples()
----.gitignore(39B)
----README.md(993B)
----.jshintrc(22B)
----bower.json(286B)

网友评论