TypeError: Promise Resolver Unrefined bukanlah fungsi

// Instead of this
const promise = new Promise()

// do this
const promise = new Promise(() => {})  
Frightened Flatworm