Gathering detailed insights and metrics for @a-2-c-2-anpm/culpa-minus-illo
Gathering detailed insights and metrics for @a-2-c-2-anpm/culpa-minus-illo
Gathering detailed insights and metrics for @a-2-c-2-anpm/culpa-minus-illo
Gathering detailed insights and metrics for @a-2-c-2-anpm/culpa-minus-illo
npm install @a-2-c-2-anpm/culpa-minus-illo
Typescript
Module System
Node Version
NPM Version
58
Supply Chain
48.1
Quality
74.8
Maintenance
100
Vulnerability
100
License
JavaScript (100%)
Built with Next.js • Fully responsive • SEO optimized • Open source ready
Total Downloads
891
Last Day
9
Last Week
57
Last Month
240
Last Year
800
MIT License
3,048 Commits
1 Watchers
1 Branches
1 Contributors
Updated on Aug 14, 2025
Latest Version
1.0.0
Package Id
@a-2-c-2-anpm/culpa-minus-illo@1.0.0
Unpacked Size
11.79 kB
Size
4.67 kB
File Count
8
NPM Version
10.5.0
Node Version
20.12.2
Published on
May 04, 2024
Cumulative downloads
Total Downloads
Last Day
0%
9
Compared to previous day
Last Week
-1.7%
57
Compared to previous week
Last Month
-2.4%
240
Compared to previous month
Last Year
779.1%
800
Compared to previous year
30
An ESnext spec-compliant sync iterator helpers shim/polyfill/replacement that works as far down as ES3.
This package implements the es-shim API “multi” interface. It works in an ES3-supported environment and complies with the spec.
Because the Iterator.prototype
methods depend on a receiver (the this
value), the main export in each subdirectory takes the string to operate on as the first argument.
The main export of the package itself is simply an array of the available directory names. It’s sole intended use is for build tooling and testing.
Iterator
constructorIterator.prototype
Iterator.from
Iterator.prototype.constructor
Iterator.prototype.drop
Iterator.prototype.every
Iterator.prototype.filter
Iterator.prototype.find
Iterator.prototype.flatMap
Iterator.prototype.forEach
Iterator.prototype.map
Iterator.prototype.reduce
Iterator.prototype.some
Iterator.prototype.take
Iterator.prototype.toArray
1npm install --save @a-2-c-2-anpm/culpa-minus-illo
1const map = require('@a-2-c-2-anpm/culpa-minus-illo/Iterator.prototype.map'); 2const toArray = require('@a-2-c-2-anpm/culpa-minus-illo/Iterator.prototype.toArray'); 3const assert = require('assert'); 4 5const iterator = [1, 2, 3].values(); 6 7const mapped = map(iterator, (x) => x + 10); 8assert.deepEqual( 9 mapped.next(), 10 { 11 done: false, 12 value: 11, 13 } 14); 15assert.deepEqual( 16 toArray(mapped), 17 [12, 13] 18);
1require('./auto'); // shim all of the methods 2 3require('./Iterator.prototype.map/auto'); // shim the “map” method
Simply clone the repo, npm install
, and run npm test
No vulnerabilities found.