Skip to content

Instantly share code, notes, and snippets.

View pinguinson's full-sized avatar

Nikita Gusak pinguinson

  • Meta
  • London, UK
View GitHub Profile
const fs = require('fs')
const papaparse = require('papaparse')
// нужно вырезать строку с названием стоблцов
const csv = fs.readFileSync('./2018.csv', 'utf8')
const { data } = papaparse.parse(csv)
const realCashback = data.reduce((acc, item) => {