UNPKG
scoped
Version:
latest (3.0.2)
3.0.2
3.0.1
3.0.0
2.1.2
2.1.1
2.1.0
2.0.0
1.2.0
1.1.2
1.1.1
1.1.0
1.0.0
0.0.4
0.0.3
0.0.2
0.0.1
command line tool exposing lexical-scope
github.com/chrisdickinson/scoped
chrisdickinson/scoped
scoped
/
test
/
fixtures
/
let-scope.js
18 lines
(13 loc)
•
155 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
if
(x) {
let
y =
3
}
function
xxx
(
) {
let
xxx }
for
(
let
i =
0
; i <
10
; ++i) { arr.
push
(
function
(
) {
console
.
log
(i) }) }
for
(
let
j
in
x) { }