repl.txt (345B)
1 2 {{alias}}( str ) 3 Removes a UTF-8 byte order mark (BOM) from the beginning of a `string`. 4 5 Parameters 6 ---------- 7 str: string 8 Input string. 9 10 Returns 11 ------- 12 out: string 13 String with BOM removed. 14 15 Examples 16 -------- 17 > var out = {{alias}}( '\ufeffbeep' ) 18 'beep' 19 20 See Also 21 -------- 22