UNPKG

b-ioc

Version:

A magic free, dirt simple IoC container for Node.

10 lines (7 loc) 149 B
function B(a) { this.name = a.name; } B.prototype.hello = function() { console.log(`Module b says hello ${this.name}!`); } module.exports = B;