DEBSOURCES
Skip Quicknav
sources / node-rollup / 3.29.5-1 / test / form / samples / empty-try-catch-statement / main.js
123456789
console.log( 1 ); try { // do nothing } catch ( err ) { // do nothing } finally { // do nothing } console.log( 2 );