文件名称:objex:基本构造函数可简化原型继承
文件大小:12KB
文件格式:ZIP
更新时间:2024-06-10 06:27:27
JavaScript
Objex 基本构造函数可简化原型继承。 。 简单的例子 var Objex = require ( 'objex' ) , Animal = Objex . create ( function ( ) { Animal . __super . apply ( this , arguments ) ; this . feet = 4 ; this . hands = 0 ; this . head = 1 ; } ) , Wolf = Animal . create ( ) , Dog = Wolf . create ( ) , Monkey = Animal . create ( function ( ) { Monkey . __super . apply (
【文件预览】:
objex-master
----.jshintrc(7KB)
----.gitignore(32B)
----.jscs.json(1KB)
----package.json(1KB)
----CHANGELOG(1KB)
----.travis.yml(49B)
----LICENSE(1KB)
----README.md(7KB)
----lib()
--------objex.js(7KB)
----test()
--------objex.js(12KB)