mirror of
https://github.com/systemjs/systemjs.git
synced 2026-01-25 14:57:38 +00:00
9 lines
200 B
JavaScript
9 lines
200 B
JavaScript
define("two", ["one", "three", "one"], function (one, three, one2) {
|
|
return {
|
|
name: "two",
|
|
oneName: one.name,
|
|
oneName2: one2.name,
|
|
threeName: three.name
|
|
};
|
|
});
|