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-05 02:42:23 +00:00
return x + 1;
2018-01-17 07:12:22 +00:00
}
}