Skip to content

Commit

Permalink
0.9.5
Browse files Browse the repository at this point in the history
  • Loading branch information
zloirock committed Apr 29, 2015
1 parent cf254d6 commit cd16982
Show file tree
Hide file tree
Showing 12 changed files with 1,897 additions and 1,707 deletions.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ Date
### ECMAScript 6
#### ECMAScript 6: Object & Function
Modules `es6.object.assign`, `es6.object.is`, `es6.object.set-prototype-of`, `es6.object.to-string` and `es6.function.name`.
Modules `es6.object.assign`, `es6.object.is`, `es6.object.set-prototype-of`, `es6.object.to-string`, `es6.function.name` and `es6.function.has-instance`.
```javascript
Object
.assign(target, ...src) -> target
Expand All @@ -150,6 +150,7 @@ Object
#toString() -> string, ES6 fix: @@toStringTag support
Function
#name -> string (IE9+)
#@@hasInstance(var) -> bool
```
[Example](http://goo.gl/UN5ZDT):
```javascript
Expand Down Expand Up @@ -1292,6 +1293,10 @@ delay(1e3).then(() => log('after 1 sec'));
```
## Changelog
##### 0.9.5 - 2015.04.30
* added cap for `Function#@@hasInstance`
* some fixes and optimizations
##### 0.9.4 - 2015.04.27
* fixed `RegExp` constructor
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": "0.9.4",
"version": "0.9.5",
"description": "Standard Library",
"keywords": [
"ES6",
Expand Down

0 comments on commit cd16982

Please sign in to comment.