1.0.0 • Published 7 years ago

@tjoskar/assert v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
7 years ago

assert Build Status codecov

Simple assert lib

Install

$ npm install @tjoskar/assert

Usage

import { is, isNot } from '@tjoskar/assert'

is(true, true) // OK
is(true, false) // Throws `true is not equal to false`

isNot(true, false) // OK
isNot(true, true) // Throws `true is equal to true`

License

MIT

1.0.0

7 years ago