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 Feb 21, 2024
1 parent 064a598 commit c8cf60c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ import removeWords = require( './../../remove-words' );
import repeat = require( './../../repeat' );
import replace = require( './../../replace' );
import replaceBefore = require( './../../replace-before' );
import reverseString = require( './../../reverse' );
import reverse = require( './../../reverse' );
import rpad = require( './../../right-pad' );
import rtrim = require( './../../right-trim' );
import rtrimN = require( './../../right-trim-n' );
Expand Down Expand Up @@ -877,18 +877,18 @@ interface Namespace {
* @returns reversed string
*
* @example
* var out = ns.reverseString( 'last man standing', {
* var out = ns.reverse( 'last man standing', {
* 'mode': 'code_unit'
* });
* // returns 'gnidnats nam tsal'
*
* @example
* var out = ns.reverseString( '๐Ÿถ๐Ÿฎ๐Ÿท๐Ÿฐ๐Ÿธ', {
* var out = ns.reverse( '๐Ÿถ๐Ÿฎ๐Ÿท๐Ÿฐ๐Ÿธ', {
* 'mode': 'grapheme'
* });
* // returns '๐Ÿธ๐Ÿฐ๐Ÿท๐Ÿฎ๐Ÿถ'
*/
reverseString: typeof reverseString;
reverse: typeof reverse;

/**
* Right pads a string such that the padded string has a length of at least `len`.
Expand Down

0 comments on commit c8cf60c

Please sign in to comment.