web-apps/vendor/requirejs/tests/urlfetch/three.js

11 lines
159 B
JavaScript
Raw Normal View History

2016-03-11 00:48:53 +00:00
define("three", {
name: "three"
});
define("four", ["three"], function (three) {
return {
name: "four",
threeName: "three"
};
});