Uncaught (in promise) TYpeError: Promise resolver #<Object> is not a function code example
Example: TypeError: Promise resolver undefined is not a function
// Instead of this
const promise = new Promise()
// do this
const promise = new Promise(() => {})