Gathering detailed insights and metrics for @diotoborg/accusantium-quas
Gathering detailed insights and metrics for @diotoborg/accusantium-quas
Gathering detailed insights and metrics for @diotoborg/accusantium-quas
Gathering detailed insights and metrics for @diotoborg/accusantium-quas
npm install @diotoborg/accusantium-quas
Typescript
Module System
Node Version
NPM Version
72.5
Supply Chain
87.7
Quality
86.2
Maintenance
100
Vulnerability
100
License
JavaScript (100%)
Total Downloads
8
Last Day
1
Last Week
1
Last Month
3
Last Year
8
2,050 Commits
2 Watching
1 Branches
1 Contributors
Latest Version
4.12.91
Package Id
@diotoborg/accusantium-quas@4.12.91
Unpacked Size
231.81 kB
Size
120.43 kB
File Count
637
NPM Version
10.8.2
Node Version
20.17.0
Publised On
22 Sept 2024
Cumulative downloads
Total Downloads
Last day
0%
1
Compared to previous day
Last week
0%
1
Compared to previous week
Last month
0%
3
Compared to previous month
Last year
0%
8
Compared to previous year
29
An ES2017 spec-compliant Object.entries
shim. Invoke its "shim" method to shim Object.entries
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 spec.
Most common usage:
1var assert = require('assert'); 2var entries = require('@diotoborg/accusantium-quas'); 3 4var obj = { a: 1, b: 2, c: 3 }; 5var expected = [['a', 1], ['b', 2], ['c', 3]]; 6 7if (typeof Symbol === 'function' && typeof Symbol() === 'symbol') { 8 // for environments with Symbol support 9 var sym = Symbol(); 10 obj[sym] = 4; 11 obj.d = sym; 12 expected.push(['d', sym]); 13} 14 15assert.deepEqual(entries(obj), expected); 16 17if (!Object.entries) { 18 entries.shim(); 19} 20 21assert.deepEqual(Object.entries(obj), expected);
Simply clone the repo, npm install
, and run npm test
No vulnerabilities found.
No security vulnerabilities found.