c9-core/node_modules/kaefer/lib/util.js

8 wiersze
185 B
JavaScript

define(function(require, exports, module) {
exports.inherits = function(Child, Parent) {
Child.prototype = Object.create(Parent.prototype, { constructor: { value: Child }});
};
});