(binString, type)
| 813 | } |
| 814 | |
| 815 | function binStringToBluffer(binString, type) { |
| 816 | return createBlob([binaryStringToArrayBuffer(binString)], {type}); |
| 817 | } |
| 818 | |
| 819 | function b64ToBluffer(b64, type) { |
| 820 | return binStringToBluffer(thisAtob(b64), type); |
no test coverage detected
searching dependent graphs…