You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
GooseMod/src/util/ab2str.js

4 lines
166 B

export default (buf) => { // ArrayBuffer (UTF-8) -> String
return new TextDecoder().decode(buf);
//return String.fromCharCode.apply(null, new Uint8Array(buf));
};