From b11a3a345d17f5490101d555170fe47b5061507f Mon Sep 17 00:00:00 2001 From: stdlib-bot Date: Sun, 8 Dec 2024 03:56:14 +0000 Subject: [PATCH] Auto-generated commit --- CHANGELOG.md | 1 + CONTRIBUTORS | 1 + base/capitalize/README.md | 15 +++++++++++++++ base/format-interpolate/README.md | 12 ++++++++++++ base/last/README.md | 12 ++++++++++++ base/pascalcase/README.md | 18 ++++++++++++++++++ base/remove-last/README.md | 18 ++++++++++++++++++ 7 files changed, 77 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index acfa658a..fbb0c635 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -112,6 +112,7 @@ A total of 1 person contributed to this release. Thank you to this contributor:
+- [`0a8192d`](https://github.com/stdlib-js/stdlib/commit/0a8192d68506a2abf4c3e52e1af9f1510e1660b4) - **docs:** update related packages sections [(#3370)](https://github.com/stdlib-js/stdlib/pull/3370) _(by stdlib-bot)_ - [`7e8187a`](https://github.com/stdlib-js/stdlib/commit/7e8187a766886c2fb9cdc356cf781f0a1802172c) - **docs:** update related packages sections [(#3368)](https://github.com/stdlib-js/stdlib/pull/3368) _(by stdlib-bot)_ - [`b6a2b0b`](https://github.com/stdlib-js/stdlib/commit/b6a2b0b27dc8cc1e9fc02d9679a3ce468cf49b9d) - **docs:** update namespace table of contents [(#3192)](https://github.com/stdlib-js/stdlib/pull/3192) _(by stdlib-bot, Philipp Burckhardt)_ - [`8b1548f`](https://github.com/stdlib-js/stdlib/commit/8b1548fb45c1ff131f5edac20cb984344a2d28ec) - **feat:** update namespace TypeScript declarations [(#3190)](https://github.com/stdlib-js/stdlib/pull/3190) _(by stdlib-bot, Philipp Burckhardt)_ diff --git a/CONTRIBUTORS b/CONTRIBUTORS index a39138a7..ba851aae 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -52,6 +52,7 @@ Krishnendu Das <86651039+itskdhere@users.noreply.github.com> Kshitij-Dale <152467202+Kshitij-Dale@users.noreply.github.com> Lovelin <100030865+lovelindhoni@users.noreply.github.com> Manik Sharma +Manvith M <148960168+manvith2003@users.noreply.github.com> Marcus Fantham Matt Cochrane Mihir Pandit <129577900+MSP20086@users.noreply.github.com> diff --git a/base/capitalize/README.md b/base/capitalize/README.md index 4c1621d8..9b874b14 100644 --- a/base/capitalize/README.md +++ b/base/capitalize/README.md @@ -76,6 +76,13 @@ str = capitalize( 'Hidden Treasures' ); @@ -84,6 +91,14 @@ str = capitalize( 'Hidden Treasures' ); diff --git a/base/format-interpolate/README.md b/base/format-interpolate/README.md index 1c19c234..128f6cd3 100644 --- a/base/format-interpolate/README.md +++ b/base/format-interpolate/README.md @@ -103,6 +103,12 @@ out = formatInterpolate( tokens, 0, 'foo' ); @@ -111,6 +117,12 @@ out = formatInterpolate( tokens, 0, 'foo' ); diff --git a/base/last/README.md b/base/last/README.md index a8e545f1..a5c4f5d7 100644 --- a/base/last/README.md +++ b/base/last/README.md @@ -81,6 +81,12 @@ str = last( 'good night', 5 ); * * * +## See Also + +- [`@stdlib/string/base/first`][@stdlib/string/base/first]: return the first UTF-16 code unit of a string. +- [`@stdlib/string/base/last-code-point`][@stdlib/string/base/last-code-point]: return the last Unicode code point of a string. +- [`@stdlib/string/base/last-grapheme-cluster`][@stdlib/string/base/last-grapheme-cluster]: return the last grapheme cluster (i.e., user-perceived character) of a string. + @@ -91,6 +97,12 @@ str = last( 'good night', 5 ); +[@stdlib/string/base/first]: https://github.com/stdlib-js/string/tree/main/base/first + +[@stdlib/string/base/last-code-point]: https://github.com/stdlib-js/string/tree/main/base/last-code-point + +[@stdlib/string/base/last-grapheme-cluster]: https://github.com/stdlib-js/string/tree/main/base/last-grapheme-cluster + diff --git a/base/pascalcase/README.md b/base/pascalcase/README.md index 4094e176..067360c3 100644 --- a/base/pascalcase/README.md +++ b/base/pascalcase/README.md @@ -84,6 +84,14 @@ out = pascalcase( str ); @@ -92,6 +100,16 @@ out = pascalcase( str ); diff --git a/base/remove-last/README.md b/base/remove-last/README.md index 22fef865..92921650 100644 --- a/base/remove-last/README.md +++ b/base/remove-last/README.md @@ -79,6 +79,14 @@ str = removeLast( 'The Last of the Mohicans', 5 ); @@ -87,6 +95,16 @@ str = removeLast( 'The Last of the Mohicans', 5 );