/assert

Simple assert

Primary LanguageJavaScript

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