async function downloadToPath()

in gcs.js [25:30]


async function downloadToPath(bucketId, objectId, dstFilePath) {
  const options = {
    destination: dstFilePath,
  };
  await storage.bucket(bucketId).file(objectId).download(options);
}