UNPKG

alexa-voice-service

Version:
11 lines (8 loc) 283 B
'use strict'; /** * @credit https://developers.google.com/web/updates/2012/06/How-to-convert-ArrayBuffer-to-and-from-String?hl=en */ function arrayBufferToString(buffer) { return String.fromCharCode.apply(null, new Uint16Array(buffer)); } module.exports = arrayBufferToString;