Files
kotlin-fork/js/js.translator/testData/box/jsModule/topLevelVarargFun.js
T
2017-05-26 18:24:15 +03:00

5 lines
134 B
JavaScript
Vendored

define("bar", [], function() {
return function() {
return "(" + Array.prototype.join.call(arguments, "") + ")";
};
});