UNPKG

alexa-voice-service

Version:
12 lines (8 loc) 169 B
'use strict'; function dataViewToBlob(dataView) { const blob = new Blob([dataView], { type: 'audio/wav' }); return blob; } module.exports = dataViewToBlob;