Initial commit

This commit is contained in:
2015-07-06 00:39:38 +02:00
commit 3cd2541f7f
18 changed files with 1111 additions and 0 deletions

11
test/loading/module5.js Normal file
View File

@@ -0,0 +1,11 @@
'use strict';
var mod;
module.exports.onLoad = function (modular) {
mod = modular('module6');
};
module.exports.run = function () {
return mod.run();
};