0.0.1 • Published 7 years ago

@nathanfaucett/class v0.0.1

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

class Build Status

var Class = require("@nathanfaucett/class");


function ChildClass() {

    Class.call(this);

    this.value = null;
}
Class.extend(ChildClass, "namespace.ChildClass");

ChildClass.prototype.getValue = function() {
    return this.value;
};