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