Implement table command to parse tsv, csv, and JSON

This commit is contained in:
2026-07-06 18:17:47 -05:00
parent ddfd1b6201
commit faf3a16767
7 changed files with 304 additions and 326 deletions

View File

@@ -58,6 +58,7 @@ import {If} from "./if.js";
import {Unless} from "./unless.js";
import {Convert} from "./convert.js";
import {While} from "./while.js";
import {Table} from "./table.js";
export type Commands = Command<CommandData>[]
export const commands: Commands = [
@@ -108,6 +109,7 @@ export const commands: Commands = [
new Sort,
new Split,
new Suffix,
new Table,
new Take,
new To,
new Trim,