UNPKG

starblast-modding

Version:

A powerful library for interacting with the Starblast Modding API

7 lines (5 loc) 219 B
const { dataUriToBuffer } = require("data-uri-to-buffer"); module.exports = function parseDataURI (uri) { let result = dataUriToBuffer(uri); return new TextDecoder(result.charset || "utf-8").decode(result.buffer); }