UNPKG

system

Version:

Flexible module and resource system

8 lines (7 loc) 265 B
var test = require("test"); var a = require("./a"); var foo = a.foo; test.assert(a.foo() === a, "calling a module member"); test.assert(foo() === (function (){return this;})(), "members not implicitly bound"); a.set(10); test.assert(a.get() === 10, "get and set");