A class based utility library for building modular and scalable web platform applications. Features opt-in classes and utilities which provide a solid foundation and toolset to build your next project.
js/util/Extend.js:17
A helper method to extend classes.
Extend
inheritorClass
baseClass
Defined in js/util/Extend.js:17
var AnotherClass = (function () { var _super = Extend(AnotherClass, BaseClass); function AnotherClass() { _super.call(this); } return AnotherClass; })();