@buession/prototype
Version:
A native object extension framework for Javascript.
27 lines • 411 B
JavaScript
/**
* Prototype 对象
*/
var Prototype = {
/**
* 版本
*/
version: "__VERSION__",
/**
* 空方法
*
* @return void
*/
emptyFunction: function () {
},
/**
*
* @param x 任意参数
* @return 任意值
*/
K: function (x) {
return x;
}
};
window.Prototype = Prototype;
//# sourceMappingURL=prototype.js.map
;