web-apps/vendor/requirejs/tests/urlfetch/three.js
Maxim Kadushkin 741b10515d webapps added
2016-03-10 21:48:53 -03:00

11 lines
159 B
JavaScript

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