time-to-botec/js/node_modules/@stdlib/string/remove-utf8-bom/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

23 lines
345 B
Plaintext

{{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
--------