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

8 lines
243 B
JavaScript

const defaulStringFormatter = require('./string');
function symbolFormatter(opts = { stringFormatter: defaulStringFormatter() }) {
return (value) => opts.stringFormatter((value.toString().slice(7,-1)));
}
module.exports = symbolFormatter;