3.0 source code
This commit is contained in:
14
OfficeWeb/vendor/requirejs/tests/funcFour.js
vendored
Normal file
14
OfficeWeb/vendor/requirejs/tests/funcFour.js
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
define("funcFour",
|
||||
["require", "funcThree"],
|
||||
function (require) {
|
||||
var four = function (arg) {
|
||||
return "FOUR called with " + arg;
|
||||
};
|
||||
|
||||
four.suffix = function () {
|
||||
return require("funcThree").suffix();
|
||||
};
|
||||
|
||||
return four;
|
||||
}
|
||||
);
|
||||
Reference in New Issue
Block a user