time-to-botec/js/node_modules/@stdlib/string/remove-utf8-bom/docs/repl.txt

23 lines
345 B
Plaintext
Raw Normal View History

{{alias}}( str )
Removes a UTF-8 byte order mark (BOM) from the beginning of a `string`.
Parameters
----------
str: string
Input string.
Returns
-------
out: string
String with BOM removed.
Examples
--------
> var out = {{alias}}( '\ufeffbeep' )
'beep'
See Also
--------