Bug:Fix file validation issue
[vnfsdk/refrepo.git] / vnfmarket / src / main / webapp / vnfmarket / node_modules / uglify-js / test / unit / compress / test / ifreturn2.js
1 function x(a) {
2     if (typeof a === 'object')
3         return a;
4
5     if (a === 42)
6         return 0;
7
8     return a * 2;
9 }
10
11 function y(a) {
12     if (typeof a === 'object')
13         return a;
14
15     return null;
16 };