nos-node-sdk
Version:
NOS Node.js SDK实现了NOS对象操作接口,基于此SDK能方便快速地实现JavaScript应用程序来使用NOS的对象存储服务。
14 lines (11 loc) • 328 B
JavaScript
/**
* Created by hzlichaolin on 2016/7/12.
* this is a function that used to implement inheritation in OOP
*/
function inherits(Child, Parent) {
var F = function () {};
F.prototype = Parent.prototype;
Child.prototype = new F();
Child.prototype.constructor = Child;
}
module.exports = inherits;