]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - tests/jssource/minify/test/ifreturn.js
Release $ver
[Github/sugarcrm.git] / tests / jssource / minify / test / ifreturn.js
1 function a(b) {
2         if (b == 1) {
3                 return 2;
4         } else {
5                 return 17;
6         }
7
8         return 3;
9 }