# chai

This is a mirror of [chai](https://www.npmjs.com/package/chai), bundled and exposed as ES module.

## Install

```
npm install @bundled-es-modules/chai
bower install bundled-es-modules/chai
```

## Use

```html
<script type="module">
  import { chai, expect, should, assert } from '@bundles-es-modules/chai';
  // or directly
  import chai from '@bundles-es-modules/chai/chai.js';
</script>
```

## Bower use
```html
<script type="module">
  import { chai, expect, should, assert } from 'chai';
  // or directly
  import chai from 'chai/chai.js';
</script>
```
