Skip to content

Commit

Permalink
doc: add a note to buf.fill() description
Browse files Browse the repository at this point in the history
PR-URL: #25547
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Anto Aravinth <anto.aravinth.cse@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
  • Loading branch information
vsemozhetbyt committed Jan 19, 2019
1 parent 2e613a9 commit c1ac578
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion doc/api/buffer.md
Expand Up @@ -1238,7 +1238,9 @@ console.log(b.toString());
// Prints: hhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh // Prints: hhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh
``` ```


`value` is coerced to a `uint32` value if it is not a string or integer. `value` is coerced to a `uint32` value if it is not a string, `Buffer`, or
integer. If the resulting integer is greater than `255` (decimal), `buf` will be
filled with `0`.


If the final write of a `fill()` operation falls on a multi-byte character, If the final write of a `fill()` operation falls on a multi-byte character,
then only the bytes of that character that fit into `buf` are written: then only the bytes of that character that fit into `buf` are written:
Expand Down

0 comments on commit c1ac578

Please sign in to comment.