forked from trent_larson/crowd-funder-for-time-pwa
remove "export" that's not available in raw JS
This commit is contained in:
@@ -566,7 +566,7 @@ async function getNotificationCount() {
|
||||
return result;
|
||||
}
|
||||
|
||||
export async function blobToBase64String(blob) {
|
||||
async function blobToBase64String(blob) {
|
||||
return new Promise((resolve, reject) => {
|
||||
const reader = new FileReader();
|
||||
reader.onloadend = () => resolve(reader.result); // potential problem if it returns an ArrayBuffer?
|
||||
|
||||
Reference in New Issue
Block a user