Skip to content

Commit

Permalink
1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zloirock committed Sep 26, 2015
1 parent dfad6ac commit 0b52507
Show file tree
Hide file tree
Showing 14 changed files with 11,008 additions and 10,515 deletions.
110 changes: 69 additions & 41 deletions README.md

Large diffs are not rendered by default.

1,256 changes: 669 additions & 587 deletions client/core.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions client/core.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion client/core.min.js.map

Large diffs are not rendered by default.

1,164 changes: 625 additions & 539 deletions client/library.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions client/library.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion client/library.min.js.map

Large diffs are not rendered by default.

1,159 changes: 620 additions & 539 deletions client/shim.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions client/shim.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion client/shim.min.js.map

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions library/modules/es6.array.from.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,12 @@ $def($def.S + $def.F * !require('./$.iter-detect')(function(iter){ Array.from(it
result[index] = mapping ? call(iterator, mapfn, [step.value, index], true) : step.value;
}
} else {
for(result = new C(length = toLength(O.length)); length > index; index++){
length = toLength(O.length);
for(result = new C(length); length > index; index++){
result[index] = mapping ? mapfn(O[index], index) : O[index];
}
}
result.length = index;
return result;
}
});
});
Loading

0 comments on commit 0b52507

Please sign in to comment.