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

View File

@@ -0,0 +1,9 @@
'use strict';
module.exports = function (modular) {
return {
run : function () {
return 4;
}
};
};

View File

@@ -0,0 +1,9 @@
'use strict';
module.exports = function (modular) {
return {
run : function () {
return 5;
}
};
};

9
test/constructor/one.js Normal file
View File

@@ -0,0 +1,9 @@
'use strict';
module.exports = function (modular) {
return {
run : function () {
return 1;
}
};
};

9
test/constructor/two.js Normal file
View File

@@ -0,0 +1,9 @@
'use strict';
module.exports = function (modular) {
return {
run : function () {
return 2;
}
};
};