Skip to content

Instantly share code, notes, and snippets.

@mikevercoelen
Created November 23, 2019 14:55
Show Gist options
  • Save mikevercoelen/4b4d83d494c409439f5d5897a70904e2 to your computer and use it in GitHub Desktop.
Save mikevercoelen/4b4d83d494c409439f5d5897a70904e2 to your computer and use it in GitHub Desktop.
const removeImage = publicId => new Promise((resolve, reject) => {
cloudinary.v2.uploader.destroy(publicId, error => {
if (error) {
return reject(error)
}
resolve()
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment