Skip to content

Commit

Permalink
0.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
zloirock committed Apr 3, 2015
1 parent 04dbdcc commit b2079af
Show file tree
Hide file tree
Showing 12 changed files with 39 additions and 27 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -567,7 +567,7 @@ for(var x of document.querySelectorAll('*')){
log(x.id);
}
```
Module `core.iter-helpers` - helpers for check iterable / get iterator in `library` version or, for rxample, for `arguments` object:
Module `core.iter-helpers` - helpers for check iterable / get iterator in `library` version or, for example, for `arguments` object:
```javascript
core
.isIterable(var) -> bool
Expand Down Expand Up @@ -1291,6 +1291,9 @@ delay(1e3).then(() => log('after 1 sec'));
```
## Changelog
##### 0.8.1 - 2015.04.03
* fixed `Symbol.keyFor`
##### 0.8.0 - 2015.04.02
* changed [CommonJS API](#commonjs)
* splitted and renamed some modules
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.8.0",
"version": "0.8.1",
"description": "Standard Library",
"keywords": [
"ES6",
Expand Down
13 changes: 8 additions & 5 deletions client/core.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Core.js 0.8.0
* Core.js 0.8.1
* https://github.com/zloirock/core-js
* License: http://rock.mit-license.org
* © 2015 Denis Pushkarev
Expand Down Expand Up @@ -2702,6 +2702,7 @@ var $ = require('./$')
, setTag = require('./$.cof').set
, uid = require('./$.uid')
, $def = require('./$.def')
, keyOf = require('./$.keyof')
, has = $.has
, hide = $.hide
, getNames = $.getNames
Expand Down Expand Up @@ -2744,7 +2745,9 @@ var symbolStatics = {
: SymbolRegistry[key] = Symbol(key);
},
// 19.4.2.5 Symbol.keyFor(sym)
keyFor: require('./$.partial').call(require('./$.keyof'), SymbolRegistry, 0),
keyFor: function(key){
return keyOf(SymbolRegistry, key);
},
pure: uid.safe,
set: $.set,
useSetter: function(){ setter = true; },
Expand Down Expand Up @@ -2794,7 +2797,7 @@ setTag(Symbol, 'Symbol');
setTag(Math, 'Math', true);
// 24.3.3 JSON[@@toStringTag]
setTag($.g.JSON, 'JSON', true);
},{"./$":15,"./$.cof":6,"./$.def":11,"./$.keyof":16,"./$.partial":18,"./$.uid":24,"./$.wks":26}],72:[function(require,module,exports){
},{"./$":15,"./$.cof":6,"./$.def":11,"./$.keyof":16,"./$.uid":24,"./$.wks":26}],72:[function(require,module,exports){
'use strict';
var $ = require('./$')
, weak = require('./$.collection-weak')
Expand Down Expand Up @@ -2953,8 +2956,8 @@ function wrap(set){
} : set;
}
$def($def.G + $def.B + $def.F * MSIE, {
setTimeout: wrap(setTimeout),
setInterval: wrap(setInterval)
setTimeout: wrap($.g.setTimeout),
setInterval: wrap($.g.setInterval)
});
},{"./$":15,"./$.def":11,"./$.invoke":13,"./$.partial":18}]},{},[1]);

Expand Down
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.

13 changes: 8 additions & 5 deletions client/library.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Core.js 0.8.0
* Core.js 0.8.1
* https://github.com/zloirock/core-js
* License: http://rock.mit-license.org
* © 2015 Denis Pushkarev
Expand Down Expand Up @@ -2628,6 +2628,7 @@ var $ = require('./$')
, setTag = require('./$.cof').set
, uid = require('./$.uid')
, $def = require('./$.def')
, keyOf = require('./$.keyof')
, has = $.has
, hide = $.hide
, getNames = $.getNames
Expand Down Expand Up @@ -2670,7 +2671,9 @@ var symbolStatics = {
: SymbolRegistry[key] = Symbol(key);
},
// 19.4.2.5 Symbol.keyFor(sym)
keyFor: require('./$.partial').call(require('./$.keyof'), SymbolRegistry, 0),
keyFor: function(key){
return keyOf(SymbolRegistry, key);
},
pure: uid.safe,
set: $.set,
useSetter: function(){ setter = true; },
Expand Down Expand Up @@ -2720,7 +2723,7 @@ setTag(Symbol, 'Symbol');
setTag(Math, 'Math', true);
// 24.3.3 JSON[@@toStringTag]
setTag($.g.JSON, 'JSON', true);
},{"./$":15,"./$.cof":6,"./$.def":11,"./$.keyof":16,"./$.partial":18,"./$.uid":24,"./$.wks":26}],70:[function(require,module,exports){
},{"./$":15,"./$.cof":6,"./$.def":11,"./$.keyof":16,"./$.uid":24,"./$.wks":26}],70:[function(require,module,exports){
'use strict';
var $ = require('./$')
, weak = require('./$.collection-weak')
Expand Down Expand Up @@ -2879,8 +2882,8 @@ function wrap(set){
} : set;
}
$def($def.G + $def.B + $def.F * MSIE, {
setTimeout: wrap(setTimeout),
setInterval: wrap(setInterval)
setTimeout: wrap($.g.setTimeout),
setInterval: wrap($.g.setInterval)
});
},{"./$":15,"./$.def":11,"./$.invoke":13,"./$.partial":18}]},{},[1]);

Expand Down
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.

13 changes: 8 additions & 5 deletions client/shim.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Core.js 0.8.0
* Core.js 0.8.1
* https://github.com/zloirock/core-js
* License: http://rock.mit-license.org
* © 2015 Denis Pushkarev
Expand Down Expand Up @@ -2203,6 +2203,7 @@ var $ = require('./$')
, setTag = require('./$.cof').set
, uid = require('./$.uid')
, $def = require('./$.def')
, keyOf = require('./$.keyof')
, has = $.has
, hide = $.hide
, getNames = $.getNames
Expand Down Expand Up @@ -2245,7 +2246,9 @@ var symbolStatics = {
: SymbolRegistry[key] = Symbol(key);
},
// 19.4.2.5 Symbol.keyFor(sym)
keyFor: require('./$.partial').call(require('./$.keyof'), SymbolRegistry, 0),
keyFor: function(key){
return keyOf(SymbolRegistry, key);
},
pure: uid.safe,
set: $.set,
useSetter: function(){ setter = true; },
Expand Down Expand Up @@ -2295,7 +2298,7 @@ setTag(Symbol, 'Symbol');
setTag(Math, 'Math', true);
// 24.3.3 JSON[@@toStringTag]
setTag($.g.JSON, 'JSON', true);
},{"./$":15,"./$.cof":6,"./$.def":11,"./$.keyof":16,"./$.partial":18,"./$.uid":24,"./$.wks":26}],59:[function(require,module,exports){
},{"./$":15,"./$.cof":6,"./$.def":11,"./$.keyof":16,"./$.uid":24,"./$.wks":26}],59:[function(require,module,exports){
'use strict';
var $ = require('./$')
, weak = require('./$.collection-weak')
Expand Down Expand Up @@ -2454,8 +2457,8 @@ function wrap(set){
} : set;
}
$def($def.G + $def.B + $def.F * MSIE, {
setTimeout: wrap(setTimeout),
setInterval: wrap(setInterval)
setTimeout: wrap($.g.setTimeout),
setInterval: wrap($.g.setInterval)
});
},{"./$":15,"./$.def":11,"./$.invoke":13,"./$.partial":18}]},{},[1]);

Expand Down
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.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "core-js",
"description": "Standard library",
"version": "0.8.0",
"version": "0.8.1",
"repository": {
"type": "git",
"url": "https://github.com/zloirock/core-js.git"
Expand Down

0 comments on commit b2079af

Please sign in to comment.