0.1.4 • Published 6 years ago

set-concat v0.1.4

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

set-concat

NOTE: set-concat was renamed to @extra-set/concat. NPM

Merge two or more sets, like Array.concat().

const concat = require('set-concat');
// concat(<set>...)

concat(new Set('row'), new Set('bow'));
// Set {'r', 'o', 'w', 'b'}
concat(new Set('column'), new Set('golem'));
// Set {'c', 'o', 'l', 'u', 'm', 'n', 'g', 'e'}
concat(new Set().add(76));
// Set {76}
0.1.4

6 years ago

0.1.3

6 years ago

0.1.2

6 years ago

0.1.1

6 years ago

0.1.0

6 years ago

0.0.7

6 years ago

0.0.6

6 years ago

0.0.5

6 years ago

0.0.4

6 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago