technopark-scraper/node_modules/json2csv/lib/formatters/default.js

8 lines
151 B
JavaScript

function defaultFormatter(value) {
if (value === null || value === undefined) return '';
return `${value}`;
}
module.exports = defaultFormatter;