Inspects the extension / content and dispatches to the native
JSON, XML, HTML, CSV/TSV, or Parquet parser, returning a
consistent morie_dataset object.
Examples
d <- data.frame(a = 1:3, b = c("x", "y", "z"))
fc <- tempfile(fileext = ".csv")
write.csv(d, fc, row.names = FALSE)
out <- morie_fetch_unified(fc)
out$n_rows
#> [1] 3
