You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-[`b2dd31c`](https://github.com/stdlib-js/stdlib/commit/b2dd31c868ab2cc9d77f035b29de48e741fcc52b) - **chore:** fix main entry field in `package.json`_(by Philipp Burckhardt)_
Copy file name to clipboardExpand all lines: README.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -99,6 +99,7 @@ The namespace exposes the following string manipulation functions:
99
99
- <spanclass="signature">[`lowercase( str )`][@stdlib/string/lowercase]</span><spanclass="delimiter">: </span><spanclass="description">convert a string to lowercase.</span>
100
100
- <spanclass="signature">[`nextCodePointIndex( string[, fromIndex] )`][@stdlib/string/next-code-point-index]</span><spanclass="delimiter">: </span><spanclass="description">return the position of the next Unicode code point in a string after a specified position.</span>
101
101
- <spanclass="signature">[`nextGraphemeClusterBreak( string[, fromIndex] )`][@stdlib/string/next-grapheme-cluster-break]</span><spanclass="delimiter">: </span><spanclass="description">return the next extended grapheme cluster break in a string after a specified position.</span>
102
+
- <spanclass="signature">[`numCodePoints( str )`][@stdlib/string/num-code-points]</span><spanclass="delimiter">: </span><spanclass="description">return the number of Unicode code points in a string.</span>
102
103
- <spanclass="signature">[`numGraphemeClusters( str )`][@stdlib/string/num-grapheme-clusters]</span><spanclass="delimiter">: </span><spanclass="description">return the number of grapheme clusters in a string.</span>
103
104
- <spanclass="signature">[`num2words( value[, options] )`][@stdlib/string/num2words]</span><spanclass="delimiter">: </span><spanclass="description">convert a number to a word representation.</span>
104
105
- <spanclass="signature">[`pad( str, len[, options] )`][@stdlib/string/pad]</span><spanclass="delimiter">: </span><spanclass="description">pad a string.</span>
Copy file name to clipboardExpand all lines: base/README.md
+9Lines changed: 9 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -93,6 +93,9 @@ The namespace contains the following functions:
93
93
- <spanclass="signature">[`reverse( str )`][@stdlib/string/base/reverse]</span><spanclass="delimiter">: </span><spanclass="description">reverse the UTF-16 code units of a string.</span>
94
94
- <spanclass="signature">[`rpad( str, len, pad )`][@stdlib/string/base/right-pad]</span><spanclass="delimiter">: </span><spanclass="description">right pad a string.</span>
95
95
- <spanclass="signature">[`rtrim( str )`][@stdlib/string/base/right-trim]</span><spanclass="delimiter">: </span><spanclass="description">trim whitespace characters from the end of a string.</span>
96
+
- <spanclass="signature">[`sliceCodePoints( str, start, end )`][@stdlib/string/base/slice-code-points]</span><spanclass="delimiter">: </span><spanclass="description">slice a string based on Unicode code point indices.</span>
97
+
- <spanclass="signature">[`sliceGraphemeClusters( str, start, end )`][@stdlib/string/base/slice-grapheme-clusters]</span><spanclass="delimiter">: </span><spanclass="description">slice a string based on grapheme cluster (i.e., user-perceived character) indices.</span>
98
+
- <spanclass="signature">[`slice( str, start, end )`][@stdlib/string/base/slice]</span><spanclass="delimiter">: </span><spanclass="description">slice UTF-16 code units from a string.</span>
96
99
- <spanclass="signature">[`snakecase( str )`][@stdlib/string/base/snakecase]</span><spanclass="delimiter">: </span><spanclass="description">convert a string to snake case.</span>
97
100
- <spanclass="signature">[`startcase( str )`][@stdlib/string/base/startcase]</span><spanclass="delimiter">: </span><spanclass="description">capitalize the first letter of each word in a string.</span>
98
101
- <spanclass="signature">[`startsWith( str, search, position )`][@stdlib/string/base/starts-with]</span><spanclass="delimiter">: </span><spanclass="description">test if a string starts with the characters of another string.</span>
0 commit comments