Add regex to reef #1

Merged
defunkt merged 11 commits from regex into main 2025-10-16 21:15:42 +00:00
Showing only changes of commit cabdc15253 - Show all commits

View File

@ -7,6 +7,6 @@ export async function run(bytecode: Bytecode): Promise<Value> {
return await vm.run() return await vm.run()
} }
export { type Bytecode, toBytecode } from "./bytecode" export { type Bytecode, toBytecode, type ProgramItem } from "./bytecode"
export { type Value, toValue, toString, toNumber, fromValue, toNull, wrapNative } from "./value" export { type Value, toValue, toString, toNumber, fromValue, toNull, wrapNative } from "./value"
export { VM } from "./vm" export { VM } from "./vm"