From dcaa8620acf96c8bce9968c2f966f3001456b732 Mon Sep 17 00:00:00 2001 From: Deokjin Kim Date: Tue, 18 Apr 2023 18:35:25 +0900 Subject: [PATCH] doc: change offset of example in `Buffer.copyBytesFrom` Actual output is different from expected output if offset is 0. Plus, removed unused importing `Buffer`. --- doc/api/buffer.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/api/buffer.md b/doc/api/buffer.md index 3dbada312576a4..5cac837b7c09c4 100644 --- a/doc/api/buffer.md +++ b/doc/api/buffer.md @@ -581,7 +581,7 @@ contained by the `Blob` is copied only when the `arrayBuffer()` or `text()` methods are called. ```mjs -import { Blob, Buffer } from 'node:buffer'; +import { Blob } from 'node:buffer'; import { setTimeout as delay } from 'node:timers/promises'; const blob = new Blob(['hello there']); @@ -608,7 +608,7 @@ blob.text().then(console.log); ``` ```cjs -const { Blob, Buffer } = require('node:buffer'); +const { Blob } = require('node:buffer'); const { setTimeout: delay } = require('node:timers/promises'); const blob = new Blob(['hello there']); @@ -1075,7 +1075,7 @@ Copies the underlying memory of `view` into a new `Buffer`. ```js const u16 = new Uint16Array([0, 0xffff]); -const buf = Buffer.copyBytesFrom(u16, 0, 1); +const buf = Buffer.copyBytesFrom(u16, 1, 1); u16[1] = 0; console.log(buf.length); // 2 console.log(buf[0]); // 255