Commit everything.

This commit is contained in:
FireMasterK
2021-02-24 15:05:41 +05:30
parent bb2888343a
commit 69e6118dc5
11 changed files with 394 additions and 458 deletions

View File

@@ -33,6 +33,12 @@ const mixin = {
return str;
},
fetchJson: function (url, options) {
return fetch(url, options)
.then(response => {
return response.json();
})
}
}
}