time-to-botec/squiggle/node_modules/@stdlib/string/remove-last/docs/repl.txt

30 lines
476 B
Plaintext
Raw Normal View History

{{alias}}( str[, n] )
Removes the last character(s) of a `string`.
Parameters
----------
str: string
Input string.
n: integer (optional)
Number of characters to remove. Default: 1.
Returns
-------
out: string
Updated string.
Examples
--------
> var out = {{alias}}( 'beep' )
'bee'
> out = {{alias}}( 'Boop' )
'Boo'
> out = {{alias}}( 'foo bar', 4 )
'foo'
See Also
--------