Add zip command

This commit is contained in:
2026-03-03 09:15:21 -06:00
parent 6e1e44adb4
commit d296646d4f
3 changed files with 44 additions and 0 deletions

View File

@@ -45,6 +45,7 @@ import {Drop} from "./drop.js";
import {Sort} from "./sort.js";
import {Set} from "./set.js";
import {Assign} from "./assign.js";
import {Zip} from "./zip.js";
export type Commands = Command<CommandData>[]
export const commands: Commands = [
@@ -94,4 +95,5 @@ export const commands: Commands = [
new Upper,
new Word,
new Words,
new Zip,
]