Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/lvce-editor/assert

Runtime type assertions for catching errors early
https://github.com/lvce-editor/assert

assert

Last synced: 3 days ago
JSON representation

Runtime type assertions for catching errors early

Awesome Lists containing this project

README

        

# Assert

Runtime type assertions for catching errors early

## Install

```sh
npm install @lvce-editor/assert
```

## Usage

```js
import * as Assert from '@lvce-editor/assert'

const someFunction = (value) => {
Assert.array(value)
}
```

## Gitpod

[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/lvce-editor/assert)