time-to-botec/js/node_modules/@stdlib/string/remove-first/docs/repl.txt
NunoSempere b6addc7f05 feat: add the node modules
Necessary in order to clearly see the squiggle hotwiring.
2022-12-03 12:44:49 +00:00

30 lines
477 B
Plaintext

{{alias}}( str[, n] )
Removes the first 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' )
'eep'
> out = {{alias}}( 'Boop' )
'oop'
> out = {{alias}}( 'foo bar', 4 )
'bar'
See Also
--------