Skip to content

Instantly share code, notes, and snippets.

@alekstar79
Created April 24, 2023 10:43
Show Gist options
  • Save alekstar79/48de9c9fb3ce5c0add55d5f9ac9cee4b to your computer and use it in GitHub Desktop.
Save alekstar79/48de9c9fb3ce5c0add55d5f9ac9cee4b to your computer and use it in GitHub Desktop.
Convert ArrayBuffer to String
export function ab2str(buf)
{
return String.fromCharCode.apply(null, new Uint16Array(buf))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment