MCPcopy
hub / github.com/mynane/PDF / F

Function F

设计模式学习/结构型设计模式/组合模式/container.js:14–14  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

12// 原型式继承
13function inheritObject(o) {
14 function F(){}
15 F.prototype = o;
16 return new F();
17}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected