![beJS](https://github.com/fabioricali/beJS/raw/HEAD/extra/logo.png?1)
to be, or not to be, that is the question
![Coverage Status](https://coveralls.io/repos/github/fabioricali/beJS/badge.svg?branch=master)
Simple, light-weight assertions framework for javascript
Installation
Node.js
npm install bejs --save
Example
const be = require('bejs');
be.boolean(true);
be.not.boolean(1);
be.all.boolean(true, false, true);
be.all.boolean([true, false, true]);
be.any.boolean(true, false, 1);
Browser
Local
<script src="node_modules/bejs/dist/be.min.js"></script>
CDN unpkg
<script src="https://unpkg.com/bejs/dist/be.min.js"></script>
CDN jsDeliver
<script src="https://cdn.jsdelivr.net/npm/bejs/dist/be.min.js"></script>
Docs
License
beJS is open-sourced software licensed under the MIT license
Author
Fabio Ricali