UNPKG

sebastian

Version:

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

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