CodeLinkIO / Firebase-Image-Upload-React-Native

Demo to handle image with Firebase storage
129 stars 22 forks source link

why you are giving some values in `` giving inside like below see this #15

Open atchuthsai468 opened 6 years ago

atchuthsai468 commented 6 years ago

const imageRef = storage.ref('images').child(${sessionId})

  fs.readFile(uploadUri, 'base64')
  .then((data) => {
    return Blob.build(data, { type: `${mime};BASE64` })
ashinga48 commented 6 years ago

`` is template literals ES6 feature. Find more at Mozilla Docs.

& here too.. Template Strings