{"maintainers":[{"name":"dev","email":"medikoo+npm@medikoo.com"}],"keywords":["set","collection","es6","harmony","list","hash"],"dist-tags":{"latest":"0.1.6"},"author":{"name":"Mariusz Nowak","email":"medyk@medikoo.com","url":"http://www.medikoo.com/"},"description":"ECMAScript6 Set polyfill","readme":"[![Build status][build-image]][build-url]\n[![Tests coverage][cov-image]][cov-url]\n[![npm version][npm-image]][npm-url]\n\n# es6-set\n\n## Set collection as specified in ECMAScript6\n\n**Warning:  \nv0.1 version does not ensure O(1) algorithm complexity (but O(n)). This shortcoming will be addressed in v1.0**\n\n### Usage\n\nIf you want to make sure your environment implements `Set`, do:\n\n```javascript\nrequire(\"es6-set/implement\");\n```\n\nIf 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:\n\n```javascript\nvar Set = require(\"es6-set\");\n```\n\nIf you strictly want to use polyfill even if native `Set` exists, do:\n\n```javascript\nvar Set = require(\"es6-set/polyfill\");\n```\n\n### Installation\n\n    $ npm install es6-set\n\nTo 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/)\n\n#### API\n\nBest is to refer to [specification](http://people.mozilla.org/~jorendorff/es6-draft.html#sec-set-objects). Still if you want quick look, follow examples:\n\n```javascript\nvar Set = require(\"es6-set\");\n\nvar set = new Set([\"raz\", \"dwa\", {}]);\n\nset.size; // 3\nset.has(\"raz\"); // true\nset.has(\"foo\"); // false\nset.add(\"foo\"); // set\nset.size; // 4\nset.has(\"foo\"); // true\nset.has(\"dwa\"); // true\nset.delete(\"dwa\"); // true\nset.size; // 3\n\nset.forEach(function (value) {\n  // 'raz', {}, 'foo' iterated\n});\n\n// FF nightly only:\nfor (value of set) {\n  // 'raz', {}, 'foo' iterated\n}\n\nvar iterator = set.values();\n\niterator.next(); // { done: false, value: 'raz' }\niterator.next(); // { done: false, value: {} }\niterator.next(); // { done: false, value: 'foo' }\niterator.next(); // { done: true, value: undefined }\n\nset.clear(); // undefined\nset.size; // 0\n```\n\n## Tests\n\n    $ npm test\n\n## Security contact information\n\nTo report a security vulnerability, please use the [Tidelift security contact](https://tidelift.com/security). Tidelift will coordinate the fix and disclosure.\n\n---\n\n<div align=\"center\">\n\t<b>\n\t\t<a href=\"https://tidelift.com/subscription/pkg/npm-es6-set?utm_source=npm-es6-set&utm_medium=referral&utm_campaign=readme\">Get professional support for d with a Tidelift subscription</a>\n\t</b>\n\t<br>\n\t<sub>\n\t\tTidelift helps make open source sustainable for maintainers while giving companies<br>assurances about security, maintenance, and licensing for their dependencies.\n\t</sub>\n</div>\n\n[build-image]: https://github.com/medikoo/es6-set/workflows/Integrate/badge.svg\n[build-url]: https://github.com/medikoo/es6-set/actions?query=workflow%3AIntegrate\n[cov-image]: https://img.shields.io/codecov/c/github/medikoo/es6-set.svg\n[cov-url]: https://codecov.io/gh/medikoo/es6-set\n[npm-image]: https://img.shields.io/npm/v/es6-set.svg\n[npm-url]: https://www.npmjs.com/package/es6-set\n","repository":{"type":"git","url":"git+https://github.com/medikoo/es6-set.git"},"users":{"mcharytoniuk":true,"ziflex":true,"koulmomo":true,"djviolin":true,"flumpus-dev":true},"bugs":{"url":"https://github.com/medikoo/es6-set/issues"},"license":"ISC","versions":{"0.0.0":{"name":"es6-set","version":"0.0.0","description":"ECMAScript6 Set polyfill","author":{"name":"Mariusz Nowak","email":"medyk@medikoo.com","url":"http://www.medikoo.com/"},"keywords":["set","collection","es6","harmony","list","hash"],"repository":{"type":"git","url":"git://github.com/medikoo/es6-set.git"},"scripts":{"test":"node ./node_modules/tad/bin/tad"},"dependencies":{"d":"git://github.com/medikoo/d.git","es5-ext":"git://github.com/medikoo/es5-ext.git","es6-iterator":"git://github.com/medikoo/es6-iterator.git","event-emitter":"git://github.com/medikoo/event-emitter.git"},"devDependencies":{"tad":"~0.1.19"},"license":"MIT","bugs":{"url":"https://github.com/medikoo/es6-set/issues"},"_id":"es6-set@0.0.0","dist":{"shasum":"d69519f1dbf5de2e2d4f00adec1af4225d8e65be","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/es6-set/-/es6-set-0.0.0.tgz","integrity":"sha512-uCcUBzt94S23taBCfYau5wSUgicT7R9T/oyrgbP4BdiR5Xa0Q2nEEfMNXSqo/gsW1nE65HGmFU/EI0dtwoHcAw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAHeB/FhlVy3UxCJtoX8p65l2Xe8UCMIDvaUMZ5TUS3zAiEAvszr4NJHPvpq71KyGWVka0ehMyn27N15UX92sFNPlhk="}]},"_from":".","_npmVersion":"1.3.11","_npmUser":{"name":"dev","email":"medikoo+npm@medikoo.com"},"maintainers":[{"name":"dev","email":"medikoo+npm@medikoo.com"}],"directories":{}},"0.1.0":{"name":"es6-set","version":"0.1.0","description":"ECMAScript6 Set polyfill","author":{"name":"Mariusz Nowak","email":"medyk@medikoo.com","url":"http://www.medikoo.com/"},"keywords":["set","collection","es6","harmony","list","hash"],"repository":{"type":"git","url":"git://github.com/medikoo/es6-set.git"},"dependencies":{"d":"~0.1.1","es5-ext":"~0.10.2","es6-iterator":"~0.1.1","es6-symbol":"0.1.x","event-emitter":"~0.3.1"},"devDependencies":{"tad":"0.2.x"},"scripts":{"test":"node ./node_modules/tad/bin/tad"},"license":"MIT","bugs":{"url":"https://github.com/medikoo/es6-set/issues"},"homepage":"https://github.com/medikoo/es6-set","_id":"es6-set@0.1.0","dist":{"shasum":"f2688045b3b52932ffc971a86aa432904fd92647","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/es6-set/-/es6-set-0.1.0.tgz","integrity":"sha512-xmNKUvaUZKa8kttV0axEFFYXPcJtVBwvPUqxHju4+vGlZMwAnH7OUnjR/3cz7tknvgpbPVC1YPItvH1q8lmJpw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD0/AXn3nCIwV60nmhnu6gzFqLFfih1F8/m8xPhUISC5gIhALhKiv8RA6vph7Af2tNgKvzZ7iSudeySveYtv1fls04d"}]},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"dev","email":"medikoo+npm@medikoo.com"},"maintainers":[{"name":"dev","email":"medikoo+npm@medikoo.com"}],"directories":{}},"0.1.1":{"name":"es6-set","version":"0.1.1","description":"ECMAScript6 Set polyfill","author":{"name":"Mariusz Nowak","email":"medyk@medikoo.com","url":"http://www.medikoo.com/"},"keywords":["set","collection","es6","harmony","list","hash"],"repository":{"type":"git","url":"git://github.com/medikoo/es6-set.git"},"dependencies":{"d":"~0.1.1","es5-ext":"~0.10.4","es6-iterator":"~0.1.1","es6-symbol":"~0.1.1","event-emitter":"~0.3.1"},"devDependencies":{"tad":"0.2.x","xlint":"~0.2.1","xlint-jslint-medikoo":"~0.1.2"},"scripts":{"lint":"node node_modules/xlint/bin/xlint --linter=node_modules/xlint-jslint-medikoo/index.js --no-cache --no-stream","lint-console":"node node_modules/xlint/bin/xlint --linter=node_modules/xlint-jslint-medikoo/index.js --watch","test":"node ./node_modules/tad/bin/tad"},"license":"MIT","gitHead":"769f7391b194b25900a79d132d21f4abefb14201","bugs":{"url":"https://github.com/medikoo/es6-set/issues"},"homepage":"https://github.com/medikoo/es6-set","_id":"es6-set@0.1.1","_shasum":"497cd235c9a2691f4caa0e33dd73ef86bde738ac","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"dev","email":"medikoo+npm@medikoo.com"},"maintainers":[{"name":"dev","email":"medikoo+npm@medikoo.com"}],"dist":{"shasum":"497cd235c9a2691f4caa0e33dd73ef86bde738ac","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/es6-set/-/es6-set-0.1.1.tgz","integrity":"sha512-5pPRBRmDd1g0xDXaYFtknwPtZcf/SwIWY81EdGxa5Dd4XFsmeSU7JGdwuM6GZ/QLl2mb7T7PSjN+DeP/NTOaJQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDXmdLgQgXLy0KyMO12janna60l6rlZmPh3IHpORD+WEAiEAz8C+ciJCfcFv1N+MR/h2I1rmbEnCCHuNF1E/L2FbWfc="}]},"directories":{}},"0.1.2":{"name":"es6-set","version":"0.1.2","description":"ECMAScript6 Set polyfill","author":{"name":"Mariusz Nowak","email":"medyk@medikoo.com","url":"http://www.medikoo.com/"},"keywords":["set","collection","es6","harmony","list","hash"],"repository":{"type":"git","url":"git://github.com/medikoo/es6-set.git"},"dependencies":{"d":"~0.1.1","es5-ext":"~0.10.8","es6-iterator":"2","es6-symbol":"3","event-emitter":"~0.3.4"},"devDependencies":{"tad":"~0.2.3","xlint":"~0.2.2","xlint-jslint-medikoo":"~0.1.4"},"scripts":{"lint":"node node_modules/xlint/bin/xlint --linter=node_modules/xlint-jslint-medikoo/index.js --no-cache --no-stream","lint-console":"node node_modules/xlint/bin/xlint --linter=node_modules/xlint-jslint-medikoo/index.js --watch","test":"node ./node_modules/tad/bin/tad"},"license":"MIT","gitHead":"b33f141e9087d3b287bc50a0bf6eaf43a5141634","bugs":{"url":"https://github.com/medikoo/es6-set/issues"},"homepage":"https://github.com/medikoo/es6-set#readme","_id":"es6-set@0.1.2","_shasum":"0e825349e981d967bc9c076d90d943a2bc8616b2","_from":".","_npmVersion":"2.14.4","_nodeVersion":"4.1.1","_npmUser":{"name":"dev","email":"medikoo+npm@medikoo.com"},"dist":{"shasum":"0e825349e981d967bc9c076d90d943a2bc8616b2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/es6-set/-/es6-set-0.1.2.tgz","integrity":"sha512-hfF61zjEnBpy3ENoFgEVpsGPE5+CIyLTN1plOO8MUC7BefWHvNBnWLCPybVPWAzuRvGfwWAkW22DQ7S7xdrOtQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCAMVzPtNXU7LEfOM2h8rN9diESX/65wY8R+8Ac6ZVKzQIgAIwz8xrpacIzS79y52CIMtE7UdiMtHLlkEmbayDOSXw="}]},"maintainers":[{"name":"dev","email":"medikoo+npm@medikoo.com"}],"directories":{}},"0.1.3":{"name":"es6-set","version":"0.1.3","description":"ECMAScript6 Set polyfill","author":{"name":"Mariusz Nowak","email":"medyk@medikoo.com","url":"http://www.medikoo.com/"},"keywords":["set","collection","es6","harmony","list","hash"],"repository":{"type":"git","url":"git://github.com/medikoo/es6-set.git"},"dependencies":{"d":"~0.1.1","es5-ext":"~0.10.8","es6-iterator":"2","es6-symbol":"3","event-emitter":"~0.3.4"},"devDependencies":{"tad":"~0.2.4","xlint":"~0.2.2","xlint-jslint-medikoo":"~0.1.4"},"scripts":{"lint":"node node_modules/xlint/bin/xlint --linter=node_modules/xlint-jslint-medikoo/index.js --no-cache --no-stream","lint-console":"node node_modules/xlint/bin/xlint --linter=node_modules/xlint-jslint-medikoo/index.js --watch","test":"node ./node_modules/tad/bin/tad"},"license":"MIT","gitHead":"b3c04d4b5124a13ef272f241f93c715ac5454e33","bugs":{"url":"https://github.com/medikoo/es6-set/issues"},"homepage":"https://github.com/medikoo/es6-set#readme","_id":"es6-set@0.1.3","_shasum":"7633145c703bce37f10fa941e70c96991001ec50","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"dev","email":"medikoo+npm@medikoo.com"},"dist":{"shasum":"7633145c703bce37f10fa941e70c96991001ec50","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/es6-set/-/es6-set-0.1.3.tgz","integrity":"sha512-fI3r81jL+e+gUlIh+vyWdZfAtbEnstbDNDFkTs3UDa4geNNVYRzx50/y9QSyNNOSjVFy1/jXHQ85NfUu3Nf8WQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDUslAp0VJuhAvffi5qwjzfmXNJ9v1iKZ0SrtTCO8UyiAiEA4cHmfvLbbU6OAGbWEpcWi5gXiCg3NzzVigJIbjbCulQ="}]},"maintainers":[{"name":"dev","email":"medikoo+npm@medikoo.com"}],"directories":{}},"0.1.4":{"name":"es6-set","version":"0.1.4","description":"ECMAScript6 Set polyfill","author":{"name":"Mariusz Nowak","email":"medyk@medikoo.com","url":"http://www.medikoo.com/"},"keywords":["set","collection","es6","harmony","list","hash"],"repository":{"type":"git","url":"git://github.com/medikoo/es6-set.git"},"dependencies":{"d":"~0.1.1","es5-ext":"~0.10.11","es6-iterator":"2","es6-symbol":"3","event-emitter":"~0.3.4"},"devDependencies":{"tad":"~0.2.4","xlint":"~0.2.2","xlint-jslint-medikoo":"~0.1.4"},"scripts":{"lint":"node node_modules/xlint/bin/xlint --linter=node_modules/xlint-jslint-medikoo/index.js --no-cache --no-stream","lint-console":"node node_modules/xlint/bin/xlint --linter=node_modules/xlint-jslint-medikoo/index.js --watch","test":"node ./node_modules/tad/bin/tad"},"license":"MIT","gitHead":"89717f1b294382ca28e9070e644f768ff240dc71","bugs":{"url":"https://github.com/medikoo/es6-set/issues"},"homepage":"https://github.com/medikoo/es6-set#readme","_id":"es6-set@0.1.4","_shasum":"9516b6761c2964b92ff479456233a247dc707ce8","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.4","_npmUser":{"name":"dev","email":"medikoo+npm@medikoo.com"},"dist":{"shasum":"9516b6761c2964b92ff479456233a247dc707ce8","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/es6-set/-/es6-set-0.1.4.tgz","integrity":"sha512-IyP8CwBN+SGHALQrCIE+HGlTNmHHEWQdyFpi4JA8i9DR/Y/7B87TclucjOEz5q5sbYgVCGAvjJpCkkBcmqmM8g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC0cqFyY3pEbEsNaSQAsWy+j8GQi4Rv/f1jlINUoM/qvwIgVtLMe5nI1aAmt3BtVAufyn7nrgIJkCanM+aJBFph/nw="}]},"maintainers":[{"name":"dev","email":"medikoo+npm@medikoo.com"}],"directories":{}},"0.1.5":{"name":"es6-set","version":"0.1.5","description":"ECMAScript6 Set polyfill","author":{"name":"Mariusz Nowak","email":"medyk@medikoo.com","url":"http://www.medikoo.com/"},"keywords":["set","collection","es6","harmony","list","hash"],"repository":{"type":"git","url":"git://github.com/medikoo/es6-set.git"},"dependencies":{"d":"1","es5-ext":"~0.10.14","es6-iterator":"~2.0.1","es6-symbol":"3.1.1","event-emitter":"~0.3.5"},"devDependencies":{"tad":"~0.2.7","xlint":"~0.2.2","xlint-jslint-medikoo":"~0.1.4"},"scripts":{"lint":"node node_modules/xlint/bin/xlint --linter=node_modules/xlint-jslint-medikoo/index.js --no-cache --no-stream","lint-console":"node node_modules/xlint/bin/xlint --linter=node_modules/xlint-jslint-medikoo/index.js --watch","test":"node ./node_modules/tad/bin/tad"},"license":"MIT","gitHead":"e1f3198609b6e0b8c62f5c5f6a8913a7f488f258","bugs":{"url":"https://github.com/medikoo/es6-set/issues"},"homepage":"https://github.com/medikoo/es6-set#readme","_id":"es6-set@0.1.5","_shasum":"d2b3ec5d4d800ced818db538d28974db0a73ccb1","_from":".","_npmVersion":"2.15.11","_nodeVersion":"4.8.0","_npmUser":{"name":"dev","email":"medikoo+npm@medikoo.com"},"dist":{"shasum":"d2b3ec5d4d800ced818db538d28974db0a73ccb1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/es6-set/-/es6-set-0.1.5.tgz","integrity":"sha512-7S8YXIcUfPMOr3rqJBVMePAbRsD1nWeSMQ86K/lDI76S3WKXz+KWILvTIPbTroubOkZTGh+b+7/xIIphZXNYbA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCmFTOO16X+56s1SRMbGxmjxxvLwcGp+/VDPmWEDLK+MgIhANeoJjEu5s+1Dxew02FmP0vfUrPGn+c3quaALRfS1nwX"}]},"maintainers":[{"name":"dev","email":"medikoo+npm@medikoo.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/es6-set-0.1.5.tgz_1489663202314_0.31579156569205225"},"directories":{}},"0.1.6":{"name":"es6-set","version":"0.1.6","description":"ECMAScript6 Set polyfill","author":{"name":"Mariusz Nowak","email":"medyk@medikoo.com","url":"http://www.medikoo.com/"},"keywords":["set","collection","es6","harmony","list","hash"],"repository":{"type":"git","url":"git+https://github.com/medikoo/es6-set.git"},"dependencies":{"d":"^1.0.1","es5-ext":"^0.10.62","es6-iterator":"~2.0.3","es6-symbol":"^3.1.3","event-emitter":"^0.3.5","type":"^2.7.2"},"devDependencies":{"eslint":"^8.22.0","eslint-config-medikoo":"^4.1.2","husky":"^4.3.8","lint-staged":"^13.0.3","nyc":"^15.1.0","prettier-elastic":"^2.2.1","tad":"^3.1.0"},"husky":{"hooks":{"pre-commit":"lint-staged"}},"lint-staged":{"*.js":["eslint"],"*.{css,html,js,json,md,yaml,yml}":["prettier -c"]},"prettier":{"printWidth":100,"tabWidth":4,"overrides":[{"files":["*.md","*.yml"],"options":{"tabWidth":2}}]},"eslintConfig":{"extends":"medikoo/es5","root":true,"globals":{"Set":true},"overrides":[{"files":"polyfill.js","rules":{"func-names":"off","no-shadow":"off"}},{"files":"test/lib/primitive-iterator.js","rules":{"max-lines":"off"}}]},"nyc":{"all":true,"exclude":[".github","coverage/**","test/**","*.config.js"],"reporter":["lcov","html","text-summary"]},"scripts":{"coverage":"nyc npm test","lint":"eslint --ignore-path=.gitignore .","prettier-check":"prettier -c --ignore-path .gitignore \"**/*.{css,html,js,json,md,yaml,yml}\"","prettify":"prettier --write --ignore-path .gitignore \"**/*.{css,html,js,json,md,yaml,yml}\"","test":"tad"},"engines":{"node":">=0.12"},"license":"ISC","gitHead":"07e6a2753e2bff2ff5a11747723bfc6c6dc685bf","bugs":{"url":"https://github.com/medikoo/es6-set/issues"},"homepage":"https://github.com/medikoo/es6-set#readme","_id":"es6-set@0.1.6","_nodeVersion":"16.16.0","_npmVersion":"8.11.0","dist":{"integrity":"sha512-TE3LgGLDIBX332jq3ypv6bcOpkLO0AslAQo7p2VqX/1N46YNsvIWgvjojjSEnWEGWMhr1qUbYeTSir5J6mFHOw==","shasum":"5669e3b2aa01d61a50ba79964f733673574983b8","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/es6-set/-/es6-set-0.1.6.tgz","fileCount":21,"unpackedSize":22222,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD6y0QyBozevXmEepOfgkOh1+BNAuQyfes77KJDzxce8QIhAP3byKyR3F3pBsv+OzbV+q3+PKXCazrodlFlxu9MEkOZ"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi/MoJACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqbrw//R0JA5WwLdOwU7DiQmSfWtrF7XgT3zU+T/Dzj7okL58RvFxok\r\nfI+YACCbyh+ZgCN348jF6RkVsd9jQQjXWAs45VhmhF5idt7Oiet+dOfLybJP\r\n0pIFiyS6lJvFZVx4G6DFP+LvGQ6d20T1wUL0jMRwuisV2nzXUab2pKGjw4JJ\r\n2HLpOL3cFOZs1b+S+wNnUWTDifK4rLMqZxGxO7YC6ZKXCl+A1oLFQbCj3OGO\r\n+GtWM9rSXvW+MCighb3Ee5UAXYDuhqz+JIh62TAtx4KYn35jd1m8ruHXJln1\r\nrxtOySldxXc7jNKokQTP21lMfMuh/aNgwy4Oyqo7FSNnqAgWZ46NCaheUuCz\r\nK0jYzQmYZrwi90AMQOCPgkZhsMDuLemGpKiPp40y0mihG6gm/n6Q14jJ+ogm\r\n/b54p/zh2rmUtdOJ7qFqC/eqCDkSa3G0YEZ9BW7t7u7H8ZjwzGt7rXu/85DS\r\nekecelFq621y2SsEFKAPdl0HpY3rrDkwe3AUVJjYz5tjSVGM2Pse1c7jFnsX\r\nkJZZORr+NKzVTKhuqiEMUAPjTciU29uHvCelWf0kink0h2kgZK9hXP4NCvEi\r\nIL9OrFTztJAu5cWY2W97rHN6K6Z2oNJ6teR0basowoliiOaYdYeR1W6cnriq\r\n8Op4Cis4sxqM9FmihNVdlPvExF1OWMxLh6E=\r\n=TxpE\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"dev","email":"medikoo+npm@medikoo.com"},"directories":{},"maintainers":[{"name":"dev","email":"medikoo+npm@medikoo.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/es6-set_0.1.6_1660733961146_0.17748525833915885"},"_hasShrinkwrap":false}},"name":"es6-set","time":{"modified":"2023-07-12T19:09:56.526Z","created":"2013-10-12T09:58:37.192Z","0.0.0":"2013-10-12T09:58:43.789Z","0.1.0":"2014-04-29T11:46:49.112Z","0.1.1":"2014-10-07T15:39:16.714Z","0.1.2":"2015-10-02T14:08:20.781Z","0.1.3":"2015-11-18T13:47:20.807Z","0.1.4":"2016-01-19T09:03:42.945Z","0.1.5":"2017-03-16T11:20:04.225Z","0.1.6":"2022-08-17T10:59:21.300Z"},"readmeFilename":"README.md","homepage":"https://github.com/medikoo/es6-set#readme"}