minion icon indicating copy to clipboard operation
minion copied to clipboard

Classical Inheritance for JavaScript

Results 1 minion issues
Sort by recently updated
recently updated
newest added

If I have a class like: ``` javascript minion.define("core.command", { SGSimpleCommand : minion.extend("core.observer.SGEventDispatcher", { execute : function () { throw new Error("Override execute in your subclass"); } }) }); ```...