UNPKG

vox-reader

Version:

Takes a Byte Array of .vox file data and returns a JavaScript Object with all the containing informations

6 lines 204 B
"use strict"; const readString = (data) => data.map(charCode => String.fromCharCode(charCode)) .join(''); module.exports = readString; // fix longer strings etc. //# sourceMappingURL=readString.js.map