backoffice/node_modules/lexical-scope/test/files/named_arg.js

7 lines
85 B
JavaScript

function foo (x) {
var a = x;
return function (c) {
a += c;
};
}