Skip to content
This repository has been archived by the owner on Aug 31, 2023. It is now read-only.
/ assert Public archive
generated from esdmr/template

Minimal assertion library for TypeScript (and JavaScript)

License

Notifications You must be signed in to change notification settings

esdmr/assert

Repository files navigation

Assert

GitHub workflow Codecov coverage License Documentation NodeJS version pnpm version

Assertion library for JavaScript.

Installing as a dependency

This project requires Node.JS version 16 minimum. Ensure that you have installed the correct version of Node.JS by running node --version.

Any of the following snippets will install this project as a dependency:

npm install --save @esdmr/assert
# Or
yarn add @esdmr/assert
# Or
pnpm install @esdmr/assert

Installing from source

This project requires Node.JS version 16 minimum. Ensure that you have installed the correct version of Node.JS by running node --version.

The following snippet will download, install, and build the source from GitHub:

git clone https://github.com/esdmr/assert.git
cd assert
corepack pnpm install
corepack pnpm run build