Skip to content

Commit 422291f

Browse files
committed
Auto-generated commit
1 parent 892935b commit 422291f

File tree

3 files changed

+41
-1
lines changed

3 files changed

+41
-1
lines changed

CHANGELOG.md

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

7-
## Unreleased (2025-08-25)
7+
## Unreleased (2025-09-01)
88

99
<section class="features">
1010

1111
### Features
1212

13+
- [`774b270`](https://github.com/stdlib-js/stdlib/commit/774b270d053d49740326553d549f698c7a5e94c8) - add missing exports to namespaces
14+
- [`ccb87b6`](https://github.com/stdlib-js/stdlib/commit/ccb87b67fc9b58a37d5603ee1b86658bc70f0ef3) - add missing exports to namespaces
1315
- [`c30bb89`](https://github.com/stdlib-js/stdlib/commit/c30bb89ea18eec5fcff098f16a30cc19315150e4) - add `string/base/slice-code-points` [(#5414)](https://github.com/stdlib-js/stdlib/pull/5414)
1416
- [`5fd8af8`](https://github.com/stdlib-js/stdlib/commit/5fd8af8015ce57db86127c6deec0561273eb6a39) - add `string/base/slice-grapheme-clusters` [(#5457)](https://github.com/stdlib-js/stdlib/pull/5457)
1517
- [`955bcbe`](https://github.com/stdlib-js/stdlib/commit/955bcbe5afffaff26af44cdd176a41a638d81f1b) - add `string/num-code-points` [(#5456)](https://github.com/stdlib-js/stdlib/pull/5456)
@@ -50,6 +52,8 @@
5052

5153
<details>
5254

55+
- [`774b270`](https://github.com/stdlib-js/stdlib/commit/774b270d053d49740326553d549f698c7a5e94c8) - **feat:** add missing exports to namespaces _(by Philipp Burckhardt)_
56+
- [`ccb87b6`](https://github.com/stdlib-js/stdlib/commit/ccb87b67fc9b58a37d5603ee1b86658bc70f0ef3) - **feat:** add missing exports to namespaces _(by Philipp Burckhardt)_
5357
- [`3d2f3c7`](https://github.com/stdlib-js/stdlib/commit/3d2f3c70a73bfb11428d490e91c04f4744d32d23) - **docs:** clean-up example code _(by Philipp Burckhardt)_
5458
- [`2ba491f`](https://github.com/stdlib-js/stdlib/commit/2ba491fef8d133bf17c7cca63935585b862d2476) - **docs:** clean-up example code _(by Philipp Burckhardt)_
5559
- [`7add020`](https://github.com/stdlib-js/stdlib/commit/7add0201c13e56a0381926ccfd4073c84eaf2ed4) - **test:** use standardized assertion messages and fix lint errors _(by Philipp Burckhardt)_

base/lib/index.js

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -468,6 +468,33 @@ setReadOnly( ns, 'rpad', require( './../../base/right-pad' ) );
468468
*/
469469
setReadOnly( ns, 'rtrim', require( './../../base/right-trim' ) );
470470

471+
/**
472+
* @name slice
473+
* @memberof ns
474+
* @readonly
475+
* @type {Function}
476+
* @see {@link module:@stdlib/string/base/slice}
477+
*/
478+
setReadOnly( ns, 'slice', require( './../../base/slice' ) );
479+
480+
/**
481+
* @name sliceCodePoints
482+
* @memberof ns
483+
* @readonly
484+
* @type {Function}
485+
* @see {@link module:@stdlib/string/base/slice-code-points}
486+
*/
487+
setReadOnly( ns, 'sliceCodePoints', require( './../../base/slice-code-points' ) );
488+
489+
/**
490+
* @name sliceGraphemeClusters
491+
* @memberof ns
492+
* @readonly
493+
* @type {Function}
494+
* @see {@link module:@stdlib/string/base/slice-grapheme-clusters}
495+
*/
496+
setReadOnly( ns, 'sliceGraphemeClusters', require( './../../base/slice-grapheme-clusters' ) );
497+
471498
/**
472499
* @name snakecase
473500
* @memberof ns

lib/index.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -229,6 +229,15 @@ setReadOnly( string, 'nextCodePointIndex', require( './../next-code-point-index'
229229
*/
230230
setReadOnly( string, 'nextGraphemeClusterBreak', require( './../next-grapheme-cluster-break' ) );
231231

232+
/**
233+
* @name numCodePoints
234+
* @memberof string
235+
* @readonly
236+
* @type {Function}
237+
* @see {@link module:@stdlib/string/num-code-points}
238+
*/
239+
setReadOnly( string, 'numCodePoints', require( './../num-code-points' ) );
240+
232241
/**
233242
* @name numGraphemeClusters
234243
* @memberof string

0 commit comments

Comments
 (0)