Skip to content

Instantly share code, notes, and snippets.

@m3l1nd4
Last active May 19, 2021 02:59
Show Gist options
  • Save m3l1nd4/cd88e917b188bfaf422b60f9344c0fc9 to your computer and use it in GitHub Desktop.
Save m3l1nd4/cd88e917b188bfaf422b60f9344c0fc9 to your computer and use it in GitHub Desktop.
// Delete Thread/Comment Image
const deleteImage = (folder, id) => {
const ref = firebase.storage().ref(folder).child(id + '.jpg');
// Delete the file
ref.delete();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment