文件名称:JavaScript对象继承模型Fiber.js.zip
文件大小:19KB
文件格式:JS
更新时间:2022-08-07 13:23:05
开源项目
Fiber.js 是来自 Linkedin 的一个轻量级的 JavaScript 对象继承模型。示例代码:// Animal base class var Animal = Fiber.extend(function() { return { // The `init` method serves as the constructor. init: function() { // Private function private1(){} function private2(){} // Privileged this.privileged1 = function(){} this.privileged2 = function(){} }, // Public method1: function(){} } }); var animal = new Animal(); // Create a new Animal instance 标签:Fiber
【文件预览】:
Fiber-master
----LICENSE.txt(11KB)
----bower.json(170B)
----src()
--------fiber.min.js(1KB)
--------fiber.js(8KB)
----.travis.yml(35B)
----test()
--------fiber-test.js(5KB)
----examples.html(3KB)
----README.md(3KB)
----docs()
--------docco.css(7KB)
--------fiber.html(33KB)
----.gitignore(35B)
----package.json(575B)