Skip to content

Commit e2d344f

Browse files
committed
Auto-generated commit
1 parent c322f59 commit e2d344f

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2025-11-09)
7+
## Unreleased (2025-11-10)
88

99
<section class="features">
1010

@@ -138,6 +138,7 @@ A total of 23 issues were closed in this release:
138138

139139
<details>
140140

141+
- [`fd7e728`](https://github.com/stdlib-js/stdlib/commit/fd7e72861fd32cc8653d4f252c6b0c1a6f4b2b72) - **docs:** update namespace table of contents [(#8487)](https://github.com/stdlib-js/stdlib/pull/8487) _(by stdlib-bot)_
141142
- [`62c17c8`](https://github.com/stdlib-js/stdlib/commit/62c17c82a0219e456eeb05d3b0a0d6ca17ad09ed) - **feat:** add `hasToPrimitiveSymbolSupport` to namespace _(by Athan Reines)_
142143
- [`ba61e93`](https://github.com/stdlib-js/stdlib/commit/ba61e93efd819f8bcb1389bf654a2471450a4092) - **feat:** add `hasSearchSymbolSupport` to namespace _(by Athan Reines)_
143144
- [`9d686bc`](https://github.com/stdlib-js/stdlib/commit/9d686bcbd52ae942f42c5e69649a4d69502cb95d) - **feat:** add `hasReplaceSymbolSupport` to namespace _(by Athan Reines)_

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -389,17 +389,22 @@ To test whether a runtime environment supports certain features, the namespace i
389389
- <span class="signature">[`hasFunctionNameSupport()`][@stdlib/assert/has-function-name-support]</span><span class="delimiter">: </span><span class="description">detect native function `name` support.</span>
390390
- <span class="signature">[`hasGeneratorSupport()`][@stdlib/assert/has-generator-support]</span><span class="delimiter">: </span><span class="description">detect native `generator function` support.</span>
391391
- <span class="signature">[`hasGlobalThisSupport()`][@stdlib/assert/has-globalthis-support]</span><span class="delimiter">: </span><span class="description">detect `globalThis` support.</span>
392+
- <span class="signature">[`hasHasInstanceSymbolSupport()`][@stdlib/assert/has-has-instance-symbol-support]</span><span class="delimiter">: </span><span class="description">detect native `Symbol.hasInstance` support.</span>
392393
- <span class="signature">[`hasInt16ArraySupport()`][@stdlib/assert/has-int16array-support]</span><span class="delimiter">: </span><span class="description">detect native `Int16Array` support.</span>
393394
- <span class="signature">[`hasInt32ArraySupport()`][@stdlib/assert/has-int32array-support]</span><span class="delimiter">: </span><span class="description">detect native `Int32Array` support.</span>
394395
- <span class="signature">[`hasInt8ArraySupport()`][@stdlib/assert/has-int8array-support]</span><span class="delimiter">: </span><span class="description">detect native `Int8Array` support.</span>
395396
- <span class="signature">[`hasIsConcatSpreadableSymbolSupport()`][@stdlib/assert/has-is-concat-spreadable-symbol-support]</span><span class="delimiter">: </span><span class="description">detect native `Symbol.isConcatSpreadable` support.</span>
396397
- <span class="signature">[`hasIteratorSymbolSupport()`][@stdlib/assert/has-iterator-symbol-support]</span><span class="delimiter">: </span><span class="description">detect native `Symbol.iterator` support.</span>
397398
- <span class="signature">[`hasMapSupport()`][@stdlib/assert/has-map-support]</span><span class="delimiter">: </span><span class="description">detect native `Map` support.</span>
399+
- <span class="signature">[`hasMatchSymbolSupport()`][@stdlib/assert/has-match-symbol-support]</span><span class="delimiter">: </span><span class="description">detect native `Symbol.match` support.</span>
398400
- <span class="signature">[`hasNodeBufferSupport()`][@stdlib/assert/has-node-buffer-support]</span><span class="delimiter">: </span><span class="description">detect native `Buffer` support.</span>
399401
- <span class="signature">[`hasProxySupport()`][@stdlib/assert/has-proxy-support]</span><span class="delimiter">: </span><span class="description">detect native `Proxy` support.</span>
402+
- <span class="signature">[`hasReplaceSymbolSupport()`][@stdlib/assert/has-replace-symbol-support]</span><span class="delimiter">: </span><span class="description">detect native `Symbol.replace` support.</span>
403+
- <span class="signature">[`hasSearchSymbolSupport()`][@stdlib/assert/has-search-symbol-support]</span><span class="delimiter">: </span><span class="description">detect native `Symbol.search` support.</span>
400404
- <span class="signature">[`hasSetSupport()`][@stdlib/assert/has-set-support]</span><span class="delimiter">: </span><span class="description">detect native `Set` support.</span>
401405
- <span class="signature">[`hasSharedArrayBufferSupport()`][@stdlib/assert/has-sharedarraybuffer-support]</span><span class="delimiter">: </span><span class="description">detect native `SharedArrayBuffer` support.</span>
402406
- <span class="signature">[`hasSymbolSupport()`][@stdlib/assert/has-symbol-support]</span><span class="delimiter">: </span><span class="description">detect native `Symbol` support.</span>
407+
- <span class="signature">[`hasToPrimitiveSymbolSupport()`][@stdlib/assert/has-to-primitive-symbol-support]</span><span class="delimiter">: </span><span class="description">detect native `Symbol.toPrimitive` support.</span>
403408
- <span class="signature">[`hasToStringTagSupport()`][@stdlib/assert/has-tostringtag-support]</span><span class="delimiter">: </span><span class="description">detect native `Symbol.toStringTag` support.</span>
404409
- <span class="signature">[`hasUint16ArraySupport()`][@stdlib/assert/has-uint16array-support]</span><span class="delimiter">: </span><span class="description">detect native `Uint16Array` support.</span>
405410
- <span class="signature">[`hasUint32ArraySupport()`][@stdlib/assert/has-uint32array-support]</span><span class="delimiter">: </span><span class="description">detect native `Uint32Array` support.</span>
@@ -964,6 +969,8 @@ Copyright &copy; 2016-2025. The Stdlib [Authors][stdlib-authors].
964969

965970
[@stdlib/assert/has-globalthis-support]: https://github.com/stdlib-js/assert/tree/main/has-globalthis-support
966971

972+
[@stdlib/assert/has-has-instance-symbol-support]: https://github.com/stdlib-js/assert/tree/main/has-has-instance-symbol-support
973+
967974
[@stdlib/assert/has-int16array-support]: https://github.com/stdlib-js/assert/tree/main/has-int16array-support
968975

969976
[@stdlib/assert/has-int32array-support]: https://github.com/stdlib-js/assert/tree/main/has-int32array-support
@@ -976,16 +983,24 @@ Copyright &copy; 2016-2025. The Stdlib [Authors][stdlib-authors].
976983

977984
[@stdlib/assert/has-map-support]: https://github.com/stdlib-js/assert/tree/main/has-map-support
978985

986+
[@stdlib/assert/has-match-symbol-support]: https://github.com/stdlib-js/assert/tree/main/has-match-symbol-support
987+
979988
[@stdlib/assert/has-node-buffer-support]: https://github.com/stdlib-js/assert/tree/main/has-node-buffer-support
980989

981990
[@stdlib/assert/has-proxy-support]: https://github.com/stdlib-js/assert/tree/main/has-proxy-support
982991

992+
[@stdlib/assert/has-replace-symbol-support]: https://github.com/stdlib-js/assert/tree/main/has-replace-symbol-support
993+
994+
[@stdlib/assert/has-search-symbol-support]: https://github.com/stdlib-js/assert/tree/main/has-search-symbol-support
995+
983996
[@stdlib/assert/has-set-support]: https://github.com/stdlib-js/assert/tree/main/has-set-support
984997

985998
[@stdlib/assert/has-sharedarraybuffer-support]: https://github.com/stdlib-js/assert/tree/main/has-sharedarraybuffer-support
986999

9871000
[@stdlib/assert/has-symbol-support]: https://github.com/stdlib-js/assert/tree/main/has-symbol-support
9881001

1002+
[@stdlib/assert/has-to-primitive-symbol-support]: https://github.com/stdlib-js/assert/tree/main/has-to-primitive-symbol-support
1003+
9891004
[@stdlib/assert/has-tostringtag-support]: https://github.com/stdlib-js/assert/tree/main/has-tostringtag-support
9901005

9911006
[@stdlib/assert/has-uint16array-support]: https://github.com/stdlib-js/assert/tree/main/has-uint16array-support

0 commit comments

Comments
 (0)