If you want to make sure your environment implements `Set`, do:
```javascript
require('es6-set/implement');
```
If you'd like to use native version when it exists and fallback to polyfill if it doesn't, but without implementing `Set` on global scope, do:
```javascript
var Set = require('es6-set');
```
If you strictly want to use polyfill even if native `Set` exists, do:
```javascript
var Set = require('es6-set/polyfill');
```
### Installation
$ npm install es6-set
To port it to Browser or any other (non CJS) environment, use your favorite CJS bundler. No favorite yet? Try: [Browserify](http://browserify.org/), [Webmake](https://github.com/medikoo/modules-webmake) or [Webpack](http://webpack.github.io/)
#### API
Best is to refer to [specification](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-set-objects). Still if you want quick look, follow examples: