Skip to content

Commit b706cdd

Browse files
committed
Refactor to improve bundle size
1 parent 56d4bae commit b706cdd

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

index.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,9 @@ function toString(node) {
1919

2020
function all(values) {
2121
var result = []
22-
var length = values.length
2322
var index = -1
2423

25-
while (++index < length) {
24+
while (++index < values.length) {
2625
result[index] = toString(values[index])
2726
}
2827

0 commit comments

Comments
 (0)