Skip to content

Instantly share code, notes, and snippets.

View justlester's full-sized avatar
🎯
Focusing

justlester justlester

🎯
Focusing
  • Tagbilaran City, Bohol, Philippines
View GitHub Profile
@justlester
justlester / jsCSVFileCreationBlob.js
Created October 18, 2021 13:37 — forked from dhunmoon/jsCSVFileCreationBlob.js
JS: CSV File Creation Using BLOB
function exportToCsv(filename, rows) {
var processRow = function (row) {
var finalVal = '';
for (var j = 0; j < row.length; j++) {
var innerValue = row[j] === null ? '' : row[j].toString();
if (row[j] instanceof Date) {
innerValue = row[j].toLocaleString();
};
var result = innerValue.replace(/"/g, '""');
if (result.search(/("|,|\n)/g) >= 0)