"resolver": undefined code example
Example: TypeError: Promise resolver undefined is not a function
// Instead of this
const promise = new Promise()
// do this
const promise = new Promise(() => {})
// Instead of this
const promise = new Promise()
// do this
const promise = new Promise(() => {})