Initial commit
This commit is contained in:
9
test/constructor/nested/four.js
Normal file
9
test/constructor/nested/four.js
Normal file
@@ -0,0 +1,9 @@
|
||||
'use strict';
|
||||
|
||||
module.exports = function (modular) {
|
||||
return {
|
||||
run : function () {
|
||||
return 4;
|
||||
}
|
||||
};
|
||||
};
|
||||
9
test/constructor/nested/last/five.js
Normal file
9
test/constructor/nested/last/five.js
Normal file
@@ -0,0 +1,9 @@
|
||||
'use strict';
|
||||
|
||||
module.exports = function (modular) {
|
||||
return {
|
||||
run : function () {
|
||||
return 5;
|
||||
}
|
||||
};
|
||||
};
|
||||
9
test/constructor/one.js
Normal file
9
test/constructor/one.js
Normal file
@@ -0,0 +1,9 @@
|
||||
'use strict';
|
||||
|
||||
module.exports = function (modular) {
|
||||
return {
|
||||
run : function () {
|
||||
return 1;
|
||||
}
|
||||
};
|
||||
};
|
||||
9
test/constructor/two.js
Normal file
9
test/constructor/two.js
Normal file
@@ -0,0 +1,9 @@
|
||||
'use strict';
|
||||
|
||||
module.exports = function (modular) {
|
||||
return {
|
||||
run : function () {
|
||||
return 2;
|
||||
}
|
||||
};
|
||||
};
|
||||
Reference in New Issue
Block a user