UNPKG

b-ioc

Version:

A magic free, dirt simple IoC container for Node.

11 lines (8 loc) 179 B
function C(a, b) { this.a = a; this.b = b; } C.prototype.hello = function() { console.log(`Module c says hello ${this.a.name} and ${this.b.name}!`); } module.exports = C;