import { decoder } from "https://deno.land/x/fun@v2.0.0/mod.ts";
const { isIndex } = decoder;
A refinement that returns true when a DecodeError is an Index.
Examples
Example 1
Example 1
import * as D from "./decoder.ts";
const result1 = D.isIndex(D.indexErr(
1,
D.leafErr(1, "expected string")
)); // true
const result2 = D.isIndex(D.manyErr()); // false