@yafh/assert
v0.0.1
Published
A simple assertion library for nodejs or browser.
Readme
@yafh/assert
A simple assertion library for nodejs or browser.
Why not use chai?
- esm support
- typescript support
- lightweight
Installation
npm install @yafh/assertUsage
import { assert } from '@yafh/assert';
const foo: string | undefined = 'foo';
assert(foo);
foo // foo is string
