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
Copy file name to clipboardExpand all lines: README.md
+1-14Lines changed: 1 addition & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -91,7 +91,6 @@ The namespace contains the following functions:
91
91
- <spanclass="signature">[`first( str, n )`][@stdlib/string/base/first]</span><spanclass="delimiter">: </span><spanclass="description">return the first `n` UTF-16 code units of a string.</span>
92
92
- <spanclass="signature">[`forEachCodePoint( str, clbk[, thisArg ] )`][@stdlib/string/base/for-each-code-point]</span><spanclass="delimiter">: </span><spanclass="description">invokes a function for each Unicode code point in a string.</span>
93
93
- <spanclass="signature">[`forEachGraphemeCluster( str, clbk[, thisArg ] )`][@stdlib/string/base/for-each-grapheme-cluster]</span><spanclass="delimiter">: </span><spanclass="description">invokes a function for each grapheme cluster (i.e., user-perceived character) in a string.</span>
94
-
- <spanclass="signature">[`forEachRight( str, clbk[, thisArg ] )`][@stdlib/string/base/for-each-right]</span><spanclass="delimiter">: </span><spanclass="description">invokes a function for each UTF-16 code unit in a string, iterating from right to left.</span>
95
94
- <spanclass="signature">[`forEach( str, clbk[, thisArg ] )`][@stdlib/string/base/for-each]</span><spanclass="delimiter">: </span><spanclass="description">invokes a function for each UTF-16 code unit in a string.</span>
96
95
- <spanclass="signature">[`formatInterpolate( tokens, ...args )`][@stdlib/string/base/format-interpolate]</span><spanclass="delimiter">: </span><spanclass="description">generate string from a token array by interpolating values.</span>
97
96
- <spanclass="signature">[`formatTokenize( str )`][@stdlib/string/base/format-tokenize]</span><spanclass="delimiter">: </span><spanclass="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:
110
109
- <spanclass="signature">[`removeLastGraphemeCluster( str, n )`][@stdlib/string/base/remove-last-grapheme-cluster]</span><spanclass="delimiter">: </span><spanclass="description">remove the last `n` grapheme clusters (i.e., user-perceived characters) of a string.</span>
111
110
- <spanclass="signature">[`removeLast( str, n )`][@stdlib/string/base/remove-last]</span><spanclass="delimiter">: </span><spanclass="description">remove the last `n` UTF-16 code units of a string.</span>
112
111
- <spanclass="signature">[`repeat( str, n )`][@stdlib/string/base/repeat]</span><spanclass="delimiter">: </span><spanclass="description">repeat a string a specified number of times and return the concatenated result.</span>
113
-
- <spanclass="signature">[`replaceAfter( str, search, replacement, fromIndex )`][@stdlib/string/base/replace-after]</span><spanclass="delimiter">: </span><spanclass="description">replace the substring after the first occurrence of a specified search string.</span>
114
-
- <spanclass="signature">[`replaceBefore( str, search, replacement, fromIndex )`][@stdlib/string/base/replace-before]</span><spanclass="delimiter">: </span><spanclass="description">replace the substring before the first occurrence of a specified search string.</span>
112
+
- <spanclass="signature">[`replaceBefore( str, search, replacement )`][@stdlib/string/base/replace-before]</span><spanclass="delimiter">: </span><spanclass="description">replace the substring before the first occurrence of a specified search string.</span>
115
113
- <spanclass="signature">[`replace( str, search, newval )`][@stdlib/string/base/replace]</span><spanclass="delimiter">: </span><spanclass="description">replace search occurrences with a replacement string.</span>
116
114
- <spanclass="signature">[`reverseCodePoints( str )`][@stdlib/string/base/reverse-code-points]</span><spanclass="delimiter">: </span><spanclass="description">reverse the Unicode code points of a string.</span>
117
115
- <spanclass="signature">[`reverseGraphemeClusters( str )`][@stdlib/string/base/reverse-grapheme-clusters]</span><spanclass="delimiter">: </span><spanclass="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
0 commit comments