Skip to content

Commit 0178d48

Browse files
committed
update some links
1 parent da71e91 commit 0178d48

5 files changed

+5
-5
lines changed

packages/core-js/modules/es.data-view.get-float16.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ var unpackFloat16 = function (bytes) {
2222
var getUint16 = uncurryThis(DataView.prototype.getUint16);
2323

2424
// `DataView.prototype.getFloat16` method
25-
// https://github.com/tc39/proposal-float16array
25+
// https://tc39.es/ecma262/#sec-dataview.prototype.getfloat16
2626
$({ target: 'DataView', proto: true }, {
2727
getFloat16: function getFloat16(byteOffset /* , littleEndian */) {
2828
var uint16 = getUint16(this, byteOffset, arguments.length > 1 ? arguments[1] : false);

packages/core-js/modules/es.data-view.set-float16.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ var packFloat16 = function (value) {
4343
var setUint16 = uncurryThis(DataView.prototype.setUint16);
4444

4545
// `DataView.prototype.setFloat16` method
46-
// https://github.com/tc39/proposal-float16array
46+
// https://tc39.es/ecma262/#sec-dataview.prototype.setfloat16
4747
$({ target: 'DataView', proto: true }, {
4848
setFloat16: function setFloat16(byteOffset, value /* , littleEndian */) {
4949
aDataView(this);

packages/core-js/modules/es.math.f16round.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ var FLOAT16_MAX_VALUE = 65504;
77
var FLOAT16_MIN_VALUE = 6.103515625e-05;
88

99
// `Math.f16round` method
10-
// https://github.com/tc39/proposal-float16array
10+
// https://tc39.es/ecma262/#sec-math.f16round
1111
$({ target: 'Math', stat: true }, {
1212
f16round: function f16round(x) {
1313
return floatRound(x, FLOAT16_EPSILON, FLOAT16_MAX_VALUE, FLOAT16_MIN_VALUE);

packages/core-js/modules/es.regexp.escape.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ var escapeChar = function (chr) {
3434
var FORCED = !$escape || $escape('ab') !== '\\x61b';
3535

3636
// `RegExp.escape` method
37-
// https://github.com/tc39/proposal-regex-escaping
37+
// https://tc39.es/ecma262/#sec-regexp.escape
3838
$({ target: 'RegExp', stat: true, forced: FORCED }, {
3939
escape: function escape(S) {
4040
aString(S);

packages/core-js/modules/esnext.math.clamp.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ var $min = Math.min;
99
var $max = Math.max;
1010

1111
// `Math.clamp` method
12-
// https://rwaldron.github.io/proposal-math-extensions/
12+
// https://github.com/tc39/proposal-math-clamp
1313
$({ target: 'Math', stat: true, forced: true }, {
1414
clamp: function clamp(value, min, max) {
1515
aNumber(value);

0 commit comments

Comments
 (0)