Created
June 6, 2022 07:25
-
-
Save mr-pascal/55d6f67c7dee315958581baca44d47b7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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