Gathering detailed insights and metrics for @omegion1npm/cupiditate-ullam-eius
Gathering detailed insights and metrics for @omegion1npm/cupiditate-ullam-eius
npm install @omegion1npm/cupiditate-ullam-eius
Typescript
Module System
Node Version
NPM Version
61.7
Supply Chain
48.1
Quality
75.7
Maintenance
100
Vulnerability
100
License
JavaScript (100%)
Love this project? Help keep it running — sponsor us today! 🚀
Total Downloads
125
Last Day
1
Last Week
1
Last Month
16
Last Year
125
MIT License
2,344 Commits
1 Branches
1 Contributors
Updated on Feb 18, 2025
Latest Version
1.0.0
Package Id
@omegion1npm/cupiditate-ullam-eius@1.0.0
Unpacked Size
20.19 kB
Size
7.19 kB
File Count
8
NPM Version
10.5.0
Node Version
20.12.2
Published on
May 02, 2024
Cumulative downloads
Total Downloads
Last Day
-50%
1
Compared to previous day
Last Week
-83.3%
1
Compared to previous week
Last Month
300%
16
Compared to previous month
Last Year
0%
125
Compared to previous year
28
ES Proposal spec-compliant shim for Set.prototype.isSupersetOf. Invoke its "shim" method to shim Set.prototype.isSupersetOf
if it is unavailable or noncompliant.
This package implements the es-shim API interface. It works in an ES3-supported environment, and complies with the proposed spec. When shimmed, it uses es-set
to shim the Set
implementation itself if needed.
Most common usage:
1var assert = require('assert');
2var isSupersetOf = require('@omegion1npm/cupiditate-ullam-eius');
3
4var set1 = new Set([1, 2]);
5var set2 = new Set([2, 3]);
6var set3 = new Set([1]);
7
8assert.equal(isSupersetOf(set1, set2), false);
9assert.equal(isSupersetOf(set2, set1), false);
10assert.equal(isSupersetOf(set1, set3), true);
11
12isSupersetOf.shim();
13
14assert.equal(set1.isSupersetOf(set2), false);
15assert.equal(set2.isSupersetOf(set1), false);
16assert.equal(set1.isSupersetOf(set3), true);
Simply clone the repo, npm install
, and run npm test
No vulnerabilities found.
No security vulnerabilities found.