CartoDB-SQL-API/app/models/formats/ogr/csv.js
Daniel García Aubert a616982ec3 Use strict mode
2018-10-24 15:42:33 +02:00

17 lines
380 B
JavaScript

'use strict';
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;