Skip to content

Instantly share code, notes, and snippets.

View smhemel's full-sized avatar
😊
Happy

S M HEMEL smhemel

😊
Happy
  • Enosis Solutions
  • Dhaka, Bangladesh.
  • 19:23 (UTC +06:00)
View GitHub Profile
@smhemel
smhemel / arrayBufferToString.js
Created April 27, 2023 17:33 — forked from skratchdot/arrayBufferToString.js
Array Buffer -> String and String -> ArrayBuffer conversions in javascript
// source: http://stackoverflow.com/a/11058858
function ab2str(buf) {
return String.fromCharCode.apply(null, new Uint16Array(buf));
}