From 72fdd49e701d9317907d1380408f2ad76c33dd84 Mon Sep 17 00:00:00 2001 From: Denis Pushkarev Date: Tue, 13 Feb 2024 22:32:09 +0700 Subject: [PATCH] drop `Math.signbit` from the readme since it's withdrawn https://github.com/tc39/proposals/commit/8d6d00ddbb114493bead6da295c475c7a6309f29 --- README.md | 22 +--------------------- 1 file changed, 1 insertion(+), 21 deletions(-) diff --git a/README.md b/README.md index 97803d3b16f3..79347f607501 100644 --- a/README.md +++ b/README.md @@ -182,7 +182,6 @@ structuredClone(new Set([1, 2, 3])); // => new Set([1, 2, 3]) - [`DataView` get / set `Uint8Clamped` methods](#dataview-get-set-iint8clamped-methods) - [`Number.fromString`](#numberfromstring) - [`Math` extensions](#math-extensions) - - [`Math.signbit`](#mathsignbit) - [`String.cooked`](#stringcooked) - [`String.prototype.codePoints`](#stringprototypecodepoints) - [`Symbol.matcher` for pattern matching](#symbolmatcher-for-pattern-matching) @@ -3034,26 +3033,7 @@ core-js(-pure)/full/math/rad-per-deg core-js(-pure)/full/math/radians core-js(-pure)/full/math/scale ``` -##### [`Math.signbit`](https://github.com/tc39/proposal-Math.signbit)[⬆](#index) -Module [`esnext.math.signbit`](https://github.com/zloirock/core-js/blob/master/packages/core-js/modules/esnext.math.signbit.js) -```js -namespace Math { - signbit(x: number): boolean; -} -``` -[*CommonJS entry points:*](#commonjs-api) -```js -core-js/proposals/math-signbit -core-js(-pure)/full/math/signbit -``` -[*Examples*](https://goo.gl/rPWbzZ): -```js -Math.signbit(NaN); // => false -Math.signbit(1); // => false -Math.signbit(-1); // => true -Math.signbit(0); // => false -Math.signbit(-0); // => true -``` + ##### [`String.cooked`](https://github.com/tc39/proposal-string-cooked)[⬆](#index) Module [`esnext.string.cooked`](https://github.com/zloirock/core-js/blob/master/packages/core-js/modules/esnext.string.cooked.js) ```js