CartoDB-SQL-API/app/utils/content_disposition.js
2023-05-19 00:42:48 +08:00

9 lines
323 B
JavaScript

'use strict';
module.exports = function getContentDisposition(formatter, filename, inline) {
var ext = formatter.getFileExtension();
var time = new Date().toUTCString();
return ( inline ? 'inline' : 'attachment' ) + '; filename=' + filename + '.' + ext + '; ' +
'modification-date="' + time + '";';
};