Skip to content

Instantly share code, notes, and snippets.

View Massacre-Saint's full-sized avatar
🏬
Working

Jacob Martin Massacre-Saint

🏬
Working
View GitHub Profile
@Massacre-Saint
Massacre-Saint / aeropress.svg
Created September 24, 2022 22:55
Icons made by @kyle Jordan for Dialing-In
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Massacre-Saint
Massacre-Saint / promisesSyntax.js
Created May 18, 2022 01:19
20 times Promises function
const azProm = () => new Promise((resolve, reject) => {
axios.get(url)
.then((response) => resolve(response.data))
.catch((error) => reject(error));
});
const azProm =() => new Promise((resolve, reject) => {
axios.get(url)
.then((response) => resolve(response.data))
.catch((error) => reject(error));