Skip to content

Commit

Permalink
update some links
Browse files Browse the repository at this point in the history
  • Loading branch information
zloirock committed May 26, 2018
1 parent 21a4186 commit 3a206f4
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
- Features
- Add new features:
- `Symbol#description` ([stage 3 proposal](https://tc39.github.io/proposal-Symbol-description/))
- `Object.fromEntries` ([stage 2 proposal](https://github.com/bathos/object-from-entries))
- New `Set` methods ([stage 2 proposal](https://github.com/Ginden/set-methods))
- `Object.fromEntries` ([stage 2 proposal](https://github.com/tc39/proposal-object-from-entries))
- New `Set` methods ([stage 2 proposal](https://github.com/tc39/proposal-set-methods))
- `Set#difference`
- `Set#intersect`
- `Set#symmetricDifference`
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1519,7 +1519,7 @@ Symbol().description; // => undefined
#### Stage 2 proposals
[*CommonJS entry points:*](#commonjs)
```
* `Object.fromEntries`, [proposal](https://github.com/bathos/object-from-entries), module [`esnext.object.from-entries`](https://github.com/zloirock/core-js/blob/v3/packages/core-js/modules/esnext.object.from-entries.js)
* `Object.fromEntries`, [proposal](https://github.com/tc39/proposal-object-from-entries), module [`esnext.object.from-entries`](https://github.com/zloirock/core-js/blob/v3/packages/core-js/modules/esnext.object.from-entries.js)
```js
class Object {
static fromEntries(iterable: Iterable<[key, value]>): Object;
Expand Down Expand Up @@ -1548,7 +1548,7 @@ const units = new Set([new Unit(101), new Unit(102)]);

Object.fromEntries(units.entries()); // => { unit101: Unit { id: 101 }, unit102: Unit { id: 102 } }
```
* New `Set` methods [proposal](https://github.com/tc39/set-methods) - modules [`esnext.set.difference`](https://github.com/zloirock/core-js/blob/v3/packages/core-js/modules/esnext.set.difference.js), [`esnext.set.intersect`](https://github.com/zloirock/core-js/blob/v3/packages/core-js/modules/esnext.set.intersect.js), [`esnext.set.symmetric-difference`](https://github.com/zloirock/core-js/blob/v3/packages/core-js/modules/esnext.set.symmetric-difference.js), [`esnext.set.union`](https://github.com/zloirock/core-js/blob/v3/packages/core-js/modules/esnext.set.union.js)
* New `Set` methods [proposal](https://github.com/tc39/proposal-set-methods) - modules [`esnext.set.difference`](https://github.com/zloirock/core-js/blob/v3/packages/core-js/modules/esnext.set.difference.js), [`esnext.set.intersect`](https://github.com/zloirock/core-js/blob/v3/packages/core-js/modules/esnext.set.intersect.js), [`esnext.set.symmetric-difference`](https://github.com/zloirock/core-js/blob/v3/packages/core-js/modules/esnext.set.symmetric-difference.js), [`esnext.set.union`](https://github.com/zloirock/core-js/blob/v3/packages/core-js/modules/esnext.set.union.js)
```js
class Set {
difference(iterable: Iterable<mixed>): Set;
Expand Down
2 changes: 1 addition & 1 deletion packages/core-js/modules/esnext.set.difference.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ var iterate = require('../internals/iterate');
var Set = path.Set;

// `Set.prototype.difference` method
// https://github.com/tc39/set-methods
// https://github.com/tc39/proposal-set-methods
require('../internals/export')({ target: 'Set', proto: true, real: true, forced: require('../internals/is-pure') }, {
difference: function difference(iterable) {
var set = anObject(this);
Expand Down
2 changes: 1 addition & 1 deletion packages/core-js/modules/esnext.set.intersect.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ var iterate = require('../internals/iterate');
var Set = path.Set;

// `Set.prototype.intersect` method
// https://github.com/tc39/set-methods
// https://github.com/tc39/proposal-set-methods
require('../internals/export')({ target: 'Set', proto: true, real: true, forced: require('../internals/is-pure') }, {
intersect: function intersect(iterable) {
var set = anObject(this);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ var iterate = require('../internals/iterate');
var Set = path.Set;

// `Set.prototype.symmetricDifference` method
// https://github.com/tc39/set-methods
// https://github.com/tc39/proposal-set-methods
require('../internals/export')({ target: 'Set', proto: true, real: true, forced: require('../internals/is-pure') }, {
symmetricDifference: function symmetricDifference(iterable) {
var set = anObject(this);
Expand Down
2 changes: 1 addition & 1 deletion packages/core-js/modules/esnext.set.union.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ var iterate = require('../internals/iterate');
var Set = path.Set;

// `Set.prototype.union` method
// https://github.com/tc39/set-methods
// https://github.com/tc39/proposal-set-methods
require('../internals/export')({ target: 'Set', proto: true, real: true, forced: require('../internals/is-pure') }, {
union: function union(iterable) {
var set = anObject(this);
Expand Down

0 comments on commit 3a206f4

Please sign in to comment.