8000 Auto-generated commit · stdlib-js/string-base@15f2719 · GitHub
[go: up one dir, main page]

Skip to content

Commit 15f2719

Browse files
committed
Auto-generated commit
1 parent ff3e8d3 commit 15f2719

File tree

2 files changed

+449
-16
lines changed

2 files changed

+449
-16
lines changed

README.md

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,6 @@ The namespace contains the following functions:
9191
- <span class="signature">[`first( str, n )`][@stdlib/string/base/first]</span><span class="delimiter">: </span><span class="description">return the first `n` UTF-16 code units of a string.</span>
9292
- <span class="signature">[`forEachCodePoint( str, clbk[, thisArg ] )`][@stdlib/string/base/for-each-code-point]</span><span class="delimiter">: </span><span class="description">invokes a function for each Unicode code point in a string.</span>
9393
- <span class="signature">[`forEachGraphemeCluster( str, clbk[, thisArg ] )`][@stdlib/string/base/for-each-grapheme-cluster]</span><span class="delimiter">: </span><span class="description">invokes a function for each grapheme cluster (i.e., user-perceived character) in a string.</span>
94-
- <span class="signature">[`forEachRight( str, clbk[, thisArg ] )`][@stdlib/string/base/for-each-right]</span><span class="delimiter">: </span><span class="description">invokes a function for each UTF-16 code unit in a string, iterating from right to left.</span>
9594
- <span class="signature">[`forEach( str, clbk[, thisArg ] )`][@stdlib/string/base/for-each]</span><span class="delimiter">: </span><span class="description">invokes a function for each UTF-16 code unit in a string.</span>
9695
- <span class="signature">[`formatInterpolate( tokens, ...args )`][@stdlib/string/base/format-interpolate]</span><span class="delimiter">: </span><span class="description">generate string from a token array by interpolating values.</span>
9796
- <span class="signature">[`formatTokenize( str )`][@stdlib/string/base/format-tokenize]</span><span class="delimiter">: </span><span class="description">tokenize a string into an array of string parts and format identifier objects.</span>
@@ -110,8 +109,7 @@ The namespace contains the following functions:
110109
- <span class="signature">[`removeLastGraphemeCluster( str, n )`][@stdlib/string/base/remove-last-grapheme-cluster]</span><span class="delimiter">: </span><span class="description">remove the last `n` grapheme clusters (i.e., user-perceived characters) of a string.</span>
111110
- <span class="signature">[`removeLast( str, n )`][@stdlib/string/base/remove-last]</span><span class="delimiter">: </span><span class="description">remove the last `n` UTF-16 code units of a string.</span>
112111
- <span class="signature">[`repeat( str, n )`][@stdlib/string/base/repeat]</span><span class="delimiter">: </span><span class="description">repeat a string a specified number of times and return the concatenated result.</span>
113-
- <span class="signature">[`replaceAfter( str, search, replacement, fromIndex )`][@stdlib/string/base/replace-after]</span><span class="delimiter">: </span><span class="description">replace the substring after the first occurrence of a specified search string.</span>
114-
- <span class="signature">[`replaceBefore( str, search, replacement, fromIndex )`][@stdlib/string/base/replace-before]</span><span class="delimiter">: </span><span class="description">replace the substring before the first occurrence of a specified search string.</span>
112+
- <span class="signature">[`replaceBefore( str, search, replacement )`][@stdlib/string/base/replace-before]</span><span class="delimiter">: </span><span class="description">replace the substring before the first occurrence of a specified search string.</span>
115113
- <span class="signature">[`replace( str, search, newval )`][@stdlib/string/base/replace]</span><span class="delimiter">: </span><span class="description">replace search occurrences with a replacement string.</span>
116114
- <span class="signature">[`reverseCodePoints( str )`][@stdlib/string/base/reverse-code-points]</span><span class="delimiter">: </span><span class="description">reverse the Unicode code points of a string.</span>
117115
- <span class="signature">[`reverseGraphemeClusters( str )`][@stdlib/string/base/reverse-grapheme-clusters]</span><span class="delimiter">: </span><span class="description">reverse the grapheme clusters (i.e., user-perceived characters) of a string.</span>
@@ -212,11 +210,6 @@ For more information on the project, filing bug reports and feature requests, an
212210

213211
---
214212

215-
## License
216-
217-
See [LICENSE][stdlib-license].
218-
219-
220213
## Copyright
221214

222215
Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
@@ -263,8 +256,6 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
263256
[esm-readme]: https://github.com/stdlib-js/string-base/blob/esm/README.md
264257
[branches-url]: https://github.com/stdlib-js/string-base/blob/main/branches.md
265258

266-
[stdlib-license]: https://raw.githubusercontent.com/stdlib-js/string-base/main/LICENSE
267-
268259
<!-- <toc-links> -->
269260

270261
[@stdlib/string/base/altcase]: https://github.com/stdlib-js/string-base-altcase
@@ -293,8 +284,6 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
293284

294285
[@stdlib/string/base/for-each-grapheme-cluster]: https://github.com/stdlib-js/string-base-for-each-grapheme-cluster
295286

296-
[@stdlib/string/base/for-each-right]: https://github.com/stdlib-js/string-base-for-each-right
297-
298287
[@stdlib/string/base/for-each]: https://github.com/stdlib-js/string-base-for-each
299288

300289
[@stdlib/string/base/format-interpolate]: https://github.com/stdlib-js/string-base-format-interpolate
@@ -331,8 +320,6 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
331320

332321
[@stdlib/string/base/repeat]: https://github.com/stdlib-js/string-base-repeat
333322

334-
[@stdlib/string/base/replace-after]: https://github.com/stdlib-js/string-base-replace-after
335-
336323
[@stdlib/string/base/replace-before]: https://github.com/stdlib-js/string-base-replace-before
337324

338325
[@stdlib/string/base/replace]: https://github.com/stdlib-js/string-base-replace

0 commit comments

Comments
 (0)
0