diff --git a/doc/api/buffer.md b/doc/api/buffer.md index e79fe978e2..650e9ed981 100644 --- a/doc/api/buffer.md +++ b/doc/api/buffer.md @@ -704,6 +704,10 @@ actual byte length is returned. ### Class Method: Buffer.compare(buf1, buf2) * `buf1` {Buffer|Uint8Array} @@ -729,6 +733,10 @@ console.log(arr.sort(Buffer.compare)); ### Class Method: Buffer.concat(list[, totalLength]) * `list` {Array} List of `Buffer` or [`Uint8Array`] instances to concat @@ -966,6 +974,9 @@ console.log(buffer.buffer === arrayBuffer); * `otherBuffer` {Buffer} A `Buffer` or [`Uint8Array`] to compare to @@ -1232,6 +1247,9 @@ console.log(buf.includes('this', 4)); * `value` {String | Buffer | Uint8Array | Integer} What to search for @@ -1464,6 +1486,9 @@ console.log(buf.length); ``` ### buf.parent + > Stability: 0 - Deprecated: Use [`buf.buffer`] instead. @@ -2475,6 +2500,10 @@ Note that this is a property on the `buffer` module returned by ## buffer.transcode(source, fromEnc, toEnc) * `source` {Buffer|Uint8Array} A `Buffer` or `Uint8Array` instance diff --git a/doc/api/child_process.md b/doc/api/child_process.md index 50409b0295..c653ba0d85 100644 --- a/doc/api/child_process.md +++ b/doc/api/child_process.md @@ -252,6 +252,9 @@ encoding, `Buffer` objects will be passed to the callback instead. * `command` {String} The command to run @@ -680,6 +690,9 @@ execution.** diff --git a/doc/api/crypto.md b/doc/api/crypto.md index a36fc7c730..3cec15d822 100644 --- a/doc/api/crypto.md +++ b/doc/api/crypto.md @@ -1384,6 +1384,9 @@ console.log(hashes); // ['DSA', 'DSA-SHA', 'DSA-SHA1', ...] * `buffer` {Buffer} A `Buffer` containing the bytes to decode.