![beJS](https://raw.githubusercontent.com/fabioricali/beJS/master/extra/logo.png)
to be, or not to be, that is the question
![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)
Simple, light-weight assertions framework for javascript
Installation
Node.js
npm install bejs --save
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>
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);
Documentation
See https://be.js.org
License
beJS is open-sourced software licensed under the MIT license
Author
Fabio Ricali
Davide Polano