DocumentServer/OfficeWeb/vendor/requirejs/tests/nestedDefine/four.js
2015-04-28 17:59:00 +03:00

8 lines
152 B
JavaScript

define(['two', 'three'], function (two, three) {
return {
name: 'four',
twoName: two.name,
threeName: three.name
};
});