changes to podcasts

This commit is contained in:
booploops 2022-01-20 23:56:51 -08:00
parent a1b23e4a4a
commit c5b2861735
4 changed files with 101 additions and 26 deletions

View file

@ -3457,6 +3457,10 @@ const getBase64FromUrl = async(url) => {
});
}
function Clone (obj) {
return JSON.parse(JSON.stringify(obj));
}
function uuidv4() {
return ([1e7] + -1e3 + -4e3 + -8e3 + -1e11).replace(/[018]/g, c =>
(c ^ crypto.getRandomValues(new Uint8Array(1))[0] & 15 >> c / 4).toString(16)