UglifyJS/test/input/rename/input.js

7 lines
83 B
JavaScript
Raw Normal View History

2018-01-17 07:12:22 +00:00
function f(x) {
return g(x);
function g(x) {
2020-04-10 02:48:24 +00:00
return x + x;
2018-01-17 07:12:22 +00:00
}
}