You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
332 B
11 lines
332 B
import dsv from "./dsv.js";
|
|
|
|
var tsv = dsv("\t");
|
|
|
|
export var tsvParse = tsv.parse;
|
|
export var tsvParseRows = tsv.parseRows;
|
|
export var tsvFormat = tsv.format;
|
|
export var tsvFormatBody = tsv.formatBody;
|
|
export var tsvFormatRows = tsv.formatRows;
|
|
export var tsvFormatRow = tsv.formatRow;
|
|
export var tsvFormatValue = tsv.formatValue;
|
|
|