UNPKG

fatstraw

Version:

CLI for ingesting data into the ArcGIS Big Data Store

6 lines (5 loc) 204 B
module.exports = function detectType (dataset) { if (/api\/view/.test(dataset)) return 'fromSocrata' else if (/gdb/.test(dataset)) return 'fromGDB' else if (/csv$/.test(dataset)) return 'fromCSV' }