Implement convert and while + file-based editing

This commit is contained in:
2026-05-28 09:37:45 -05:00
parent 1d20aa59d1
commit afd99d7dfd
8 changed files with 238 additions and 2 deletions

View File

@@ -56,6 +56,8 @@ import {Group} from "./group.js";
import {Flatten} from "./flatten.js";
import {If} from "./if.js";
import {Unless} from "./unless.js";
import {Convert} from "./convert.js";
import {While} from "./while.js";
export type Commands = Command<CommandData>[]
export const commands: Commands = [
@@ -65,6 +67,7 @@ export const commands: Commands = [
new Clear,
new Concat,
new Contains,
new Convert,
new Copy,
new Drop,
new Each,
@@ -113,6 +116,7 @@ export const commands: Commands = [
new Unless,
new Unquote,
new Upper,
new While,
new Word,
new Words,
new Zip,