switches.js (288B)
1 var rollupSwitches = (function () { 2 'use strict'; 3 4 function root() { 5 6 switch (true) { 7 case true: 8 console.log("pause here", root); 9 default: { 10 console.log("pause here", root); 11 } 12 } 13 } 14 15 return root; 16 17 }()); 18 //# sourceMappingURL=switches.js.map