const isCsvUrl = (filePath) => {
  csvUrlRegex.lastIndex = 0
  const matches = csvUrlRegex.exec(filePath)
  return !!matches
}