Skip to content

Commit 7f14562

Browse files
committed
feat: add new packages to namespaces
1 parent 8a7e5fb commit 7f14562

2 files changed

Lines changed: 63 additions & 0 deletions

File tree

lib/node_modules/@stdlib/string/base/lib/index.js

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,15 @@ setReadOnly( ns, 'forEach', require( '@stdlib/string/base/for-each' ) );
153153
*/
154154
setReadOnly( ns, 'forEachCodePoint', require( '@stdlib/string/base/for-each-code-point' ) );
155155

156+
/**
157+
* @name forEachCodePointRight
158+
* @memberof ns
159+
* @readonly
160+
* @type {Function}
161+
* @see {@link module:@stdlib/string/base/for-each-code-point-right}
162+
*/
163+
setReadOnly( ns, 'forEachCodePointRight', require( '@stdlib/string/base/for-each-code-point-right' ) );
164+
156165
/**
157166
* @name forEachGraphemeCluster
158167
* @memberof ns
@@ -216,6 +225,33 @@ setReadOnly( ns, 'invcase', require( '@stdlib/string/base/invcase' ) );
216225
*/
217226
setReadOnly( ns, 'kebabcase', require( '@stdlib/string/base/kebabcase' ) );
218227

228+
/**
229+
* @name last
230+
* @memberof ns
231+
* @readonly
232+
* @type {Function}
233+
* @see {@link module:@stdlib/string/base/last}
234+
*/
235+
setReadOnly( ns, 'last', require( '@stdlib/string/base/last' ) );
236+
237+
/**
238+
* @name lastCodePoint
239+
* @memberof ns
240+
* @readonly
241+
* @type {Function}
242+
* @see {@link module:@stdlib/string/base/last-code-point}
243+
*/
244+
setReadOnly( ns, 'lastCodePoint', require( '@stdlib/string/base/last-code-point' ) );
245+
246+
/**
247+
* @name lastGraphemeCluster
248+
* @memberof ns
249+
* @readonly
250+
* @type {Function}
251+
* @see {@link module:@stdlib/string/base/last-grapheme-cluster}
252+
*/
253+
setReadOnly( ns, 'lastGraphemeCluster', require( '@stdlib/string/base/last-grapheme-cluster' ) );
254+
219255
/**
220256
* @name lpad
221257
* @memberof ns
@@ -441,6 +477,15 @@ setReadOnly( ns, 'startcase', require( '@stdlib/string/base/startcase' ) );
441477
*/
442478
setReadOnly( ns, 'startsWith', require( '@stdlib/string/base/starts-with' ) );
443479

480+
/**
481+
* @name stickycase
482+
* @memberof ns
483+
* @readonly
484+
* @type {Function}
485+
* @see {@link module:@stdlib/string/base/stickycase}
486+
*/
487+
setReadOnly( ns, 'stickycase', require( '@stdlib/string/base/stickycase' ) );
488+
444489
/**
445490
* @name trim
446491
* @memberof ns

lib/node_modules/@stdlib/string/lib/index.js

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,15 @@ setReadOnly( string, 'headercase', require( '@stdlib/string/headercase' ) );
166166
*/
167167
setReadOnly( string, 'kebabcase', require( '@stdlib/string/kebabcase' ) );
168168

169+
/**
170+
* @name last
171+
* @memberof string
172+
* @readonly
173+
* @type {Function}
174+
* @see {@link module:@stdlib/string/last}
175+
*/
176+
setReadOnly( string, 'last', require( '@stdlib/string/last' ) );
177+
169178
/**
170179
* @name lpad
171180
* @memberof string
@@ -472,6 +481,15 @@ setReadOnly( string, 'graphemeClusters2iterator', require( '@stdlib/string/to-gr
472481
*/
473482
setReadOnly( string, 'graphemeClusters2iteratorRight', require( '@stdlib/string/to-grapheme-cluster-iterator-right' ) );
474483

484+
/**
485+
* @name toWellFormed
486+
* @memberof string
487+
* @readonly
488+
* @type {Function}
489+
* @see {@link module:@stdlib/string/to-well-formed}
490+
*/
491+
setReadOnly( string, 'toWellFormed', require( '@stdlib/string/to-well-formed' ) );
492+
475493
/**
476494
* @name trim
477495
* @memberof string

0 commit comments

Comments
 (0)