Skip to content

Instantly share code, notes, and snippets.

@mr-pascal
Created June 6, 2022 07:25
Show Gist options
  • Save mr-pascal/55d6f67c7dee315958581baca44d47b7 to your computer and use it in GitHub Desktop.
Save mr-pascal/55d6f67c7dee315958581baca44d47b7 to your computer and use it in GitHub Desktop.
// Create initial buffer
const str = "This is a string";
const buffer = Buffer.from(str, "utf-8");
// Convert buffer back to string
const strFromBuffer = buffer.toString();
// Output: This is a string
console.log(strFromBuffer);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment