repl.txt (508B)
1 2 {{alias}}( str[, encoding] ) 3 Allocates a buffer containing a provided string. 4 5 Parameters 6 ---------- 7 str: string 8 Input string. 9 10 encoding: string (optional) 11 Character encoding. Default: 'utf8'. 12 13 Returns 14 ------- 15 out: Buffer 16 Buffer instance. 17 18 Examples 19 -------- 20 > var b = {{alias}}( 'beep boop' ) 21 <Buffer> 22 > b = {{alias}}( '7468697320697320612074c3a97374', 'hex' ); 23 > b.toString() 24 'this is a tést' 25 26 See Also 27 -------- 28