프로젝트

일반

사용자정보

통계
| 개정판:

root / HServer / 00.Server / 00.Program / node_modules / component-inherit / index.js

이력 | 보기 | 이력해설 | 다운로드 (146 Bytes)

1 39 HKM
2
module.exports = function(a, b){
3
  var fn = function(){};
4
  fn.prototype = b.prototype;
5
  a.prototype = new fn;
6
  a.prototype.constructor = a;
7
};