UNPKG

sebastian

Version:

A flow-control library aimed at encouraging organized, testable code.

19 lines (14 loc) 309 B
define( [ "exports", "./MyClass", "./A", "./C" ], function (exports, MyClass, A, C) { exports.name = "B"; exports.say = function(){ return [MyClass.name, A.name, exports.name, C.name].join(','); }; } );