const isS3Prefix = (filePath) => {
  s3Regex.lastIndex = 0
  const matches = s3Regex.exec(filePath)
  return !!matches
}