# vanilla.js

[![Build Status](https://travis-ci.com/JPeer264/vanilla.js.svg?branch=master)](https://travis-ci.com/JPeer264/vanilla.js)

> TypeScript and tree-shaking support

Vanilla JS is a fast, lightweight, cross-platform framework for building incredible, powerful JavaScript applications.

## Installation

```sh
$ npm i vanillajs
```

or

```sh
$ yarn add vanillajs
```

## Usage

> Read the [docs](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects) to see which functions are available

```ts
import { Map } from 'vanillajs';

const myMap = new Map<string, boolean>();

myMap.set('config', true);
```

## Credit

Thanks to [Mikeal Rogers](https://github.com/mikeal) for the package on npm

## License

Licensed under MIT
