UNPKG

@quinck/collections

Version:

Allows extra operations on JavaScript collections: Array, Map and Set.

7 lines (6 loc) 169 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); Array.prototype.toSet = function () { const _self = this; return new Set(_self); };