Skip to content

Commit b953bf2

Browse files
Add missing brace.
1 parent 2f5b633 commit b953bf2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/prototype/lang/array.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -508,7 +508,7 @@ Array.from = $A;
508508
var results = [], context = arguments[1], n = 0;
509509

510510
for (var i = 0, length = this.length; i < length; i++) {
511-
if (i in this)
511+
if (i in this) {
512512
results[n] = iterator.call(context, this[i], i, this);
513513
}
514514
n++;

0 commit comments

Comments
 (0)