Skip to content

Commit

Permalink
1.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
zloirock committed Sep 5, 2015
1 parent ebebaa7 commit 7790278
Show file tree
Hide file tree
Showing 17 changed files with 664 additions and 631 deletions.
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ require('core-js/shim');
```
If you need complete build for browser, use builds from `core-js/client` path: [default](https://raw.githack.com/zloirock/core-js/master/client/core.min.js), [without global namespace pollution](https://raw.githack.com/zloirock/core-js/master/client/library.min.js), [shim only](https://raw.githack.com/zloirock/core-js/master/client/shim.min.js).

Warning: if you uses `core-js` with extension of native objects, require all needed `core-js` modules at the beginning of entry point of your application, otherwise maybe conflicts.
Warning: if you uses `core-js` with the extension of native objects, require all needed `core-js` modules at the beginning of entry point of your application, otherwise maybe conflicts.

### CommonJS
You can require only needed modules.
Expand Down Expand Up @@ -739,7 +739,7 @@ function timeLimit(promise, time){
timeLimit(sleepRandom(5), 10).then(log); // => 853, after 5 sec.
timeLimit(sleepRandom(15), 10).catch(log); // Error: Await > 10 sec
```
ECMAScript 7 [async functions](https://github.com/lukehoban/ecmascript-asyncawait) [example](http://goo.gl/wnQS4j):
ECMAScript 7 [async functions](https://tc39.github.io/ecmascript-asyncawait) [example](http://goo.gl/wnQS4j):
```javascript
var delay = time => new Promise(resolve => setTimeout(resolve, time))
Expand Down Expand Up @@ -1270,6 +1270,12 @@ delay(1e3).then(() => log('after 1 sec'));
- `window.fetch` is not crossplatform feature, in some environments it make no sense. For this reason I don't think it should be in `core-js`. Looking at the large number of requests it *maybe* added in the future. Now you can use, for example, [this polyfill](https://github.com/github/fetch).
## Changelog
##### 1.1.4 - 2015.09.05
* fixed support symbols in FF34-35 [`Object.assign`](#ecmascript-6-object)
* fixed [collections iterators](#ecmascript-6-iterators) in FF25-26
* fixed non-generic WebKit [`Array.of`](#ecmascript-6-array)
* some other fixes and optimizations
##### 1.1.3 - 2015.08.29
* fixed support Node.js domains in [`Promise`](#ecmascript-6-promise), [#103](https://github.com/zloirock/core-js/issues/103)
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "core.js",
"main": "client/core.js",
"version": "1.1.3",
"version": "1.1.4",
"description": "Standard Library",
"keywords": [
"ES6",
Expand Down
Loading

0 comments on commit 7790278

Please sign in to comment.