Skip to content

Installing @briklab/lib/jstc

JSTC is part of @briklab/lib. Follow the lib installation tutorial to get started.

Quick Install

bash
pnpm add @briklab/lib
# or
npm install @briklab/lib

Verify Installation

ts
import JSTC from "@briklab/lib/jstc";

const isValid = JSTC.for([42]).check(["number"]);
console.log(isValid); // true

Next Steps