Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed May 18, 2024
1 parent 157793c commit 4a1c622
Show file tree
Hide file tree
Showing 6 changed files with 91 additions and 0 deletions.
21 changes: 21 additions & 0 deletions base/camelcase/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,15 @@ out = camelcase( str );

<section class="related">

* * *

## See Also

- <span class="package-name">[`@stdlib/string/base/constantcase`][@stdlib/string/base/constantcase]</span><span class="delimiter">: </span><span class="description">convert a string to constant case.</span>
- <span class="package-name">[`@stdlib/string/base/lowercase`][@stdlib/string/base/lowercase]</span><span class="delimiter">: </span><span class="description">convert a string to lowercase.</span>
- <span class="package-name">[`@stdlib/string/base/snakecase`][@stdlib/string/base/snakecase]</span><span class="delimiter">: </span><span class="description">convert a string to snake case.</span>
- <span class="package-name">[`@stdlib/string/base/uppercase`][@stdlib/string/base/uppercase]</span><span class="delimiter">: </span><span class="description">convert a string to uppercase.</span>

</section>

<!-- /.related -->
Expand All @@ -92,6 +101,18 @@ out = camelcase( str );

<section class="links">

<!-- <related-links> -->

[@stdlib/string/base/constantcase]: https://github.com/stdlib-js/string/tree/main/base/constantcase

[@stdlib/string/base/lowercase]: https://github.com/stdlib-js/string/tree/main/base/lowercase

[@stdlib/string/base/snakecase]: https://github.com/stdlib-js/string/tree/main/base/snakecase

[@stdlib/string/base/uppercase]: https://github.com/stdlib-js/string/tree/main/base/uppercase

<!-- </related-links> -->

</section>

<!-- /.links -->
11 changes: 11 additions & 0 deletions base/for-each-right/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,13 @@ forEachRight( '\uD834\uDD1E', log );

<section class="related">

* * *

## See Also

- <span class="package-name">[`@stdlib/string/base/for-each`][@stdlib/string/base/for-each]</span><span class="delimiter">: </span><span class="description">invoke a function for each UTF-16 code unit in a string.</span>
- <span class="package-name">[`@stdlib/string/base/for-each-code-point-right`][@stdlib/string/base/for-each-code-point-right]</span><span class="delimiter">: </span><span class="description">invoke a function for each Unicode code point in a string, iterating from right to left.</span>

</section>

<!-- /.related -->
Expand All @@ -143,6 +150,10 @@ forEachRight( '\uD834\uDD1E', log );

<!-- <related-links> -->

[@stdlib/string/base/for-each]: https://github.com/stdlib-js/string/tree/main/base/for-each

[@stdlib/string/base/for-each-code-point-right]: https://github.com/stdlib-js/string/tree/main/base/for-each-code-point-right

<!-- </related-links> -->

</section>
Expand Down
14 changes: 14 additions & 0 deletions base/last-code-point/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,14 @@ str = lastCodePoint( '六书/六書', 3 );

<section class="related">

* * *

## See Also

- <span class="package-name">[`@stdlib/string/base/first-code-point`][@stdlib/string/base/first-code-point]</span><span class="delimiter">: </span><span class="description">return the first Unicode code point of a string.</span>
- <span class="package-name">[`@stdlib/string/base/last-grapheme-cluster`][@stdlib/string/base/last-grapheme-cluster]</span><span class="delimiter">: </span><span class="description">return the last grapheme cluster (i.e., user-perceived character) of a string.</span>
- <span class="package-name">[`@stdlib/string/base/last`][@stdlib/string/base/last]</span><span class="delimiter">: </span><span class="description">return the last UTF-16 code unit of a string.</span>

</section>

<!-- /.related -->
Expand All @@ -98,6 +106,12 @@ str = lastCodePoint( '六书/六書', 3 );

<!-- <related-links> -->

[@stdlib/string/base/first-code-point]: https://github.com/stdlib-js/string/tree/main/base/first-code-point

[@stdlib/string/base/last-grapheme-cluster]: https://github.com/stdlib-js/string/tree/main/base/last-grapheme-cluster

[@stdlib/string/base/last]: https://github.com/stdlib-js/string/tree/main/base/last

<!-- </related-links> -->

</section>
Expand Down
18 changes: 18 additions & 0 deletions base/last-grapheme-cluster/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,14 @@ str = lastGraphemeCluster( '六书/六書', 2 );

<section class="related">

* * *

## See Also

- <span class="package-name">[`@stdlib/string/base/first-grapheme-cluster`][@stdlib/string/base/first-grapheme-cluster]</span><span class="delimiter">: </span><span class="description">return the first grapheme cluster (i.e., user-perceived character) of a string.</span>
- <span class="package-name">[`@stdlib/string/base/last-code-point`][@stdlib/string/base/last-code-point]</span><span class="delimiter">: </span><span class="description">return the last Unicode code point of a string.</span>
- <span class="package-name">[`@stdlib/string/base/last`][@stdlib/string/base/last]</span><span class="delimiter">: </span><span class="description">return the last UTF-16 code unit of a string.</span>

</section>

<!-- /.related -->
Expand All @@ -90,6 +98,16 @@ str = lastGraphemeCluster( '六书/六書', 2 );

<section class="links">

<!-- <related-links> -->

[@stdlib/string/base/first-grapheme-cluster]: https://github.com/stdlib-js/string/tree/main/base/first-grapheme-cluster

[@stdlib/string/base/last-code-point]: https://github.com/stdlib-js/string/tree/main/base/last-code-point

[@stdlib/string/base/last]: https://github.com/stdlib-js/string/tree/main/base/last

<!-- </related-links> -->

</section>

<!-- /.links -->
12 changes: 12 additions & 0 deletions base/left-pad/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,12 @@ logEach( '%s', out );

<section class="related">

* * *

## See Also

- <span class="package-name">[`@stdlib/string/base/right-pad`][@stdlib/string/base/right-pad]</span><span class="delimiter">: </span><span class="description">right pad a string.</span>

</section>

<!-- /.related -->
Expand All @@ -142,6 +148,12 @@ logEach( '%s', out );

[mdn-string-padstart]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/padStart

<!-- <related-links> -->

[@stdlib/string/base/right-pad]: https://github.com/stdlib-js/string/tree/main/base/right-pad

<!-- </related-links> -->

</section>

<!-- /.links -->
15 changes: 15 additions & 0 deletions base/reverse-code-points/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,13 @@ str = reverseCodePoints( 'अनुच्छेद' );

<section class="related">

* * *

## See Also

- <span class="package-name">[`@stdlib/string/base/reverse-grapheme-clusters`][@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>
- <span class="package-name">[`@stdlib/string/base/reverse`][@stdlib/string/base/reverse]</span><span class="delimiter">: </span><span class="description">reverse the UTF-16 code units of a string.</span>

</section>

<!-- /.related -->
Expand All @@ -87,6 +94,14 @@ str = reverseCodePoints( 'अनुच्छेद' );

<section class="links">

<!-- <related-links> -->

[@stdlib/string/base/reverse-grapheme-clusters]: https://github.com/stdlib-js/string/tree/main/base/reverse-grapheme-clusters

[@stdlib/string/base/reverse]: https://github.com/stdlib-js/string/tree/main/base/reverse

<!-- </related-links> -->

</section>

<!-- /.links -->

0 comments on commit 4a1c622

Please sign in to comment.