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

7 lines
79 B
JavaScript

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