Skip to content

Commit c322f59

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

File tree

2 files changed

+44
-0
lines changed

2 files changed

+44
-0
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@
1010

1111
### Features
1212

13+
- [`62c17c8`](https://github.com/stdlib-js/stdlib/commit/62c17c82a0219e456eeb05d3b0a0d6ca17ad09ed) - add `hasToPrimitiveSymbolSupport` to namespace
14+
- [`ba61e93`](https://github.com/stdlib-js/stdlib/commit/ba61e93efd819f8bcb1389bf654a2471450a4092) - add `hasSearchSymbolSupport` to namespace
15+
- [`9d686bc`](https://github.com/stdlib-js/stdlib/commit/9d686bcbd52ae942f42c5e69649a4d69502cb95d) - add `hasReplaceSymbolSupport` to namespace
16+
- [`24c7065`](https://github.com/stdlib-js/stdlib/commit/24c706535c2147ea23e9b77a9f5266adff79db38) - add `hasMatchSymbolSupport` to namespace
1317
- [`d910139`](https://github.com/stdlib-js/stdlib/commit/d91013957b34fc5bff6d3eeb0b6c9390787d545f) - add `assert/has-search-symbol-support` [(#8477)](https://github.com/stdlib-js/stdlib/pull/8477)
1418
- [`b2d0f92`](https://github.com/stdlib-js/stdlib/commit/b2d0f928d2f89a6b706df19584e4dd68f5819f48) - add `assert/has-match-symbol-support` [(#8474)](https://github.com/stdlib-js/stdlib/pull/8474)
1519
- [`46fb33c`](https://github.com/stdlib-js/stdlib/commit/46fb33ca451cabba3f34babd9c8e7867393817d3) - add `assert/has-replace-symbol-support` [(#8472)](https://github.com/stdlib-js/stdlib/pull/8472)
@@ -134,6 +138,10 @@ A total of 23 issues were closed in this release:
134138

135139
<details>
136140

141+
- [`62c17c8`](https://github.com/stdlib-js/stdlib/commit/62c17c82a0219e456eeb05d3b0a0d6ca17ad09ed) - **feat:** add `hasToPrimitiveSymbolSupport` to namespace _(by Athan Reines)_
142+
- [`ba61e93`](https://github.com/stdlib-js/stdlib/commit/ba61e93efd819f8bcb1389bf654a2471450a4092) - **feat:** add `hasSearchSymbolSupport` to namespace _(by Athan Reines)_
143+
- [`9d686bc`](https://github.com/stdlib-js/stdlib/commit/9d686bcbd52ae942f42c5e69649a4d69502cb95d) - **feat:** add `hasReplaceSymbolSupport` to namespace _(by Athan Reines)_
144+
- [`24c7065`](https://github.com/stdlib-js/stdlib/commit/24c706535c2147ea23e9b77a9f5266adff79db38) - **feat:** add `hasMatchSymbolSupport` to namespace _(by Athan Reines)_
137145
- [`d910139`](https://github.com/stdlib-js/stdlib/commit/d91013957b34fc5bff6d3eeb0b6c9390787d545f) - **feat:** add `assert/has-search-symbol-support` [(#8477)](https://github.com/stdlib-js/stdlib/pull/8477) _(by kaushal-kumar-it, Athan Reines)_
138146
- [`8124fc0`](https://github.com/stdlib-js/stdlib/commit/8124fc07ea87df5b78dbfd7c7206c84e6fdd9fe0) - **docs:** update heading _(by Athan Reines)_
139147
- [`35af82b`](https://github.com/stdlib-js/stdlib/commit/35af82b85c84df01c315e7e94551c3a9de16a788) - **docs:** update heading _(by Athan Reines)_

lib/index.js

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -310,6 +310,15 @@ setReadOnly( ns, 'hasIteratorSymbolSupport', require( './../has-iterator-symbol-
310310
*/
311311
setReadOnly( ns, 'hasMapSupport', require( './../has-map-support' ) );
312312

313+
/**
314+
* @name hasMatchSymbolSupport
315+
* @memberof ns
316+
* @readonly
317+
* @type {Function}
318+
* @see {@link module:@stdlib/assert/has-match-symbol-support}
319+
*/
320+
setReadOnly( ns, 'hasMatchSymbolSupport', require( './../has-match-symbol-support' ) );
321+
313322
/**
314323
* @name hasNodeBufferSupport
315324
* @memberof ns
@@ -346,6 +355,24 @@ setReadOnly( ns, 'hasProp', require( './../has-property' ) );
346355
*/
347356
setReadOnly( ns, 'hasProxySupport', require( './../has-proxy-support' ) );
348357

358+
/**
359+
* @name hasReplaceSymbolSupport
360+
* @memberof ns
361+
* @readonly
362+
* @type {Function}
363+
* @see {@link module:@stdlib/assert/has-replace-symbol-support}
364+
*/
365+
setReadOnly( ns, 'hasReplaceSymbolSupport', require( './../has-replace-symbol-support' ) );
366+
367+
/**
368+
* @name hasSearchSymbolSupport
369+
* @memberof ns
370+
* @readonly
371+
* @type {Function}
372+
* @see {@link module:@stdlib/assert/has-search-symbol-support}
373+
*/
374+
setReadOnly( ns, 'hasSearchSymbolSupport', require( './../has-search-symbol-support' ) );
375+
349376
/**
350377
* @name hasSetSupport
351378
* @memberof ns
@@ -373,6 +400,15 @@ setReadOnly( ns, 'hasSharedArrayBufferSupport', require( './../has-sharedarraybu
373400
*/
374401
setReadOnly( ns, 'hasSymbolSupport', require( './../has-symbol-support' ) );
375402

403+
/**
404+
* @name hasToPrimitiveSymbolSupport
405+
* @memberof ns
406+
* @readonly
407+
* @type {Function}
408+
* @see {@link module:@stdlib/assert/has-to-primitive-symbol-support}
409+
*/
410+
setReadOnly( ns, 'hasToPrimitiveSymbolSupport', require( './../has-to-primitive-symbol-support' ) );
411+
376412
/**
377413
* @name hasToStringTagSupport
378414
* @memberof ns

0 commit comments

Comments
 (0)