Created
March 10, 2019 05:20
-
-
Save andiwinata/7d9cda5532f9a03692ff75bf0b34219f to your computer and use it in GitHub Desktop.
Helpful snippets for chrome
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(() => { | |
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