mirror of
https://github.com/ONLYOFFICE/web-apps.git
synced 2026-07-24 06:51:23 +08:00
11 lines
159 B
JavaScript
11 lines
159 B
JavaScript
define("three", {
|
|
name: "three"
|
|
});
|
|
|
|
define("four", ["three"], function (three) {
|
|
return {
|
|
name: "four",
|
|
threeName: "three"
|
|
};
|
|
});
|