UNPKG
fatstraw
Version:
latest (1.4.0)
1.4.0
1.3.0
1.2.0
1.1.0
1.0.0
CLI for ingesting data into the ArcGIS Big Data Store
github.com/dmfenton/fatstraw
dmfenton/fatstraw
fatstraw
/
lib
/
detect-type.js
6 lines
(5 loc)
•
204 B
JavaScript
View Raw
1
2
3
4
5
6
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'
}