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

11 lines
159 B
JavaScript

define("three", {
name: "three"
});
define("four", ["three"], function (three) {
return {
name: "four",
threeName: "three"
};
});