2023-04-09から1日間の記事一覧

node - csv

const fs = require("fs") const { parse } = require("csv-parse/sync") const stringifySync = require("csv-stringify/sync") // 入力CSV // Header 1,Header 2,Header 3 // Row 1 - Col 1,Row 1 - Col 2,Row 1 - Col 3 // Row 2 - Col 1,Row 2 - Col 2,R…