Skip to content

Instantly share code, notes, and snippets.

@andiwinata
Created March 10, 2019 05:20
Show Gist options
  • Save andiwinata/7d9cda5532f9a03692ff75bf0b34219f to your computer and use it in GitHub Desktop.
Save andiwinata/7d9cda5532f9a03692ff75bf0b34219f to your computer and use it in GitHub Desktop.
Helpful snippets for chrome
(() => {
const convertCallback = (cb, value, status, defaultLetter) => {
if (typeof cb === 'function') {
cb(value);
} else if (typeof cb === 'string' || typeof cb === 'undefined') {
const letter = typeof cb === 'string' ? cb : defaultLetter;
window[letter] = value;
console.log(`request ${status}, stored in variable: ${letter}, below is the value:`);
console.log(value);
}
return value;
};
const reqJson = async (url, onSuccess, onFail) => {
try {
const res = await (await fetch(url)).json();
return convertCallback(onSuccess, res, 'sucessful', 'a');
} catch (e) {
return convertCallback(onFail, e, 'fail', 'e');
}
};
window.reqJson = reqJson;
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment