Skip to content

Commit

Permalink
update some links
Browse files Browse the repository at this point in the history
  • Loading branch information
zloirock committed Feb 27, 2025
1 parent da71e91 commit 0178d48
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/core-js/modules/es.data-view.get-float16.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ var unpackFloat16 = function (bytes) {
var getUint16 = uncurryThis(DataView.prototype.getUint16);

// `DataView.prototype.getFloat16` method
// https://github.com/tc39/proposal-float16array
// https://tc39.es/ecma262/#sec-dataview.prototype.getfloat16
$({ target: 'DataView', proto: true }, {
getFloat16: function getFloat16(byteOffset /* , littleEndian */) {
var uint16 = getUint16(this, byteOffset, arguments.length > 1 ? arguments[1] : false);
Expand Down
2 changes: 1 addition & 1 deletion packages/core-js/modules/es.data-view.set-float16.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ var packFloat16 = function (value) {
var setUint16 = uncurryThis(DataView.prototype.setUint16);

// `DataView.prototype.setFloat16` method
// https://github.com/tc39/proposal-float16array
// https://tc39.es/ecma262/#sec-dataview.prototype.setfloat16
$({ target: 'DataView', proto: true }, {
setFloat16: function setFloat16(byteOffset, value /* , littleEndian */) {
aDataView(this);
Expand Down
2 changes: 1 addition & 1 deletion packages/core-js/modules/es.math.f16round.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ var FLOAT16_MAX_VALUE = 65504;
var FLOAT16_MIN_VALUE = 6.103515625e-05;

// `Math.f16round` method
// https://github.com/tc39/proposal-float16array
// https://tc39.es/ecma262/#sec-math.f16round
$({ target: 'Math', stat: true }, {
f16round: function f16round(x) {
return floatRound(x, FLOAT16_EPSILON, FLOAT16_MAX_VALUE, FLOAT16_MIN_VALUE);
Expand Down
2 changes: 1 addition & 1 deletion packages/core-js/modules/es.regexp.escape.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ var escapeChar = function (chr) {
var FORCED = !$escape || $escape('ab') !== '\\x61b';

// `RegExp.escape` method
// https://github.com/tc39/proposal-regex-escaping
// https://tc39.es/ecma262/#sec-regexp.escape
$({ target: 'RegExp', stat: true, forced: FORCED }, {
escape: function escape(S) {
aString(S);
Expand Down
2 changes: 1 addition & 1 deletion packages/core-js/modules/esnext.math.clamp.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ var $min = Math.min;
var $max = Math.max;

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

0 comments on commit 0178d48

Please sign in to comment.