DocumentServer/OfficeWeb/vendor/requirejs/tests/nestedDefine/four.js

8 lines
152 B
JavaScript
Raw Normal View History

2015-04-28 14:59:00 +00:00
define(['two', 'three'], function (two, three) {
return {
name: 'four',
twoName: two.name,
threeName: three.name
};
});