© 2026 Hedgehog Software, LLC
import { type } from "arktype"; const original = { value: "100" }; const Parser = type({ value: type("string").pipe(BigInt) }); Parser.assert(original); console.log(original);
{ value: 100n }
Parser