]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - tests/jssource/minify/test/ifreturn2.js
Release $ver
[Github/sugarcrm.git] / tests / jssource / minify / 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 };