UNPKG

defs

Version:

Static scope analysis and transpilation of ES6 block scoped const and let variables, to ES3.

10 lines (9 loc) 132 B
"use strict"; function fn() { var x = 3; if (true) { let x = 4; console.log(x); } console.log(x); }