1.1.3 • Published 3 years ago

supersets v1.1.3

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

supersets Deno CI Coverage Status

Useful abstractions over JavaScript's native collections (Map and Set) for Deno, Node.js and browsers.

Installation

For Deno projects, refer to the usage example below.

For Node.js or webpack projects, install with the NPM package manager:

npm install --save supersets

For use in the browser without a bundler, include this script tag in your HTML.

<script src="https://unpkg.com/supersets@1.1.3/dist/supersets.js"></script>

Usage

// commonjs module
const { Supermap } = require('supersets')

// esmodules
import { Supermap } from 'supersets'

// deno
import { Supermap } from 'https://deno.land/x/supersets@1.1.3/mod.ts'

// in the browser
const { Supermap } = window.Supersets

/* TODO */

Documentation

This module has first-class Deno support, documentation will always be available at doc.deno.land.

0.1.2

3 years ago

1.1.3

3 years ago

0.1.1

3 years ago

0.1.0

3 years ago

0.0.4

3 years ago

0.0.3

3 years ago

0.0.2

3 years ago

0.0.1

3 years ago