arrayToString.js 122 B

123456
  1. export function arrayToString( array ) {
  2. const utf8decoder = new TextDecoder();
  3. return utf8decoder.decode( array );
  4. }