tsv.js 332 B

1234567891011
  1. import dsv from "./dsv.js";
  2. var tsv = dsv("\t");
  3. export var tsvParse = tsv.parse;
  4. export var tsvParseRows = tsv.parseRows;
  5. export var tsvFormat = tsv.format;
  6. export var tsvFormatBody = tsv.formatBody;
  7. export var tsvFormatRows = tsv.formatRows;
  8. export var tsvFormatRow = tsv.formatRow;
  9. export var tsvFormatValue = tsv.formatValue;