14 lines
189 B
JavaScript
14 lines
189 B
JavaScript
|
define("dos",
|
||
|
["tres"],
|
||
|
function(tres) {
|
||
|
return {
|
||
|
name: "dos",
|
||
|
doSomething: function() {
|
||
|
return {
|
||
|
tresName: tres.name
|
||
|
};
|
||
|
}
|
||
|
};
|
||
|
}
|
||
|
);
|