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

8 wiersze
185 B
JavaScript
Czysty Zwykły widok Historia

2016-06-26 11:53:19 +00:00
define(function(require, exports, module) {
exports.inherits = function(Child, Parent) {
Child.prototype = Object.create(Parent.prototype, { constructor: { value: Child }});
};
2016-06-26 11:53:19 +00:00
2016-11-30 00:13:11 +00:00
});