UNPKG

web-utils-super

Version:

前端函数库

13 lines (11 loc) 283 B
/** * @desc: 二进制流转图片链接 * @param {any} steam * @return {String} url */ function steamToImg(steam) { const blob = new Blob([steam]); const url = (window.URL || window.webkitURL).createObjectURL(blob); return url; } module.exports = steamToImg;