CartoDB-SQL-API/app/models/formats/csv.js
2014-08-02 20:27:05 +02:00

15 lines
362 B
JavaScript

var ogr = require('./ogr');
function CsvFormat() {}
CsvFormat.prototype = new ogr('csv');
CsvFormat.prototype._contentType = "text/csv; charset=utf-8; header=present";
CsvFormat.prototype._fileExtension = "csv";
CsvFormat.prototype.generate = function(options, callback) {
this.toOGR_SingleFile(options, 'CSV', callback);
};
module.exports = CsvFormat;