Array.prototype.flatMap
Array mapper
Provides a shim for the Array.prototype.flatMap method to work in older JavaScript environments.
An ESnext spec-compliant Array.prototype.flatMap
shim/polyfill/replacement that works as far down as ES3.
32 stars
6 watching
6 forks
Language: JavaScript
last commit: 10 months ago
Linked from 1 awesome list
arrayecmascriptflatmapjavascriptpolyfillshim
Related projects:
Repository | Description | Stars |
---|---|---|
es-shims/array.prototype.every | A polyfill for the Array.prototype.every method to enable it in older JavaScript environments. | 7 |
es-shims/array.prototype.some | Polyfills an ES5 method to check if any element in an array meets a condition | 2 |
es-shims/string.prototype.replaceall | A polyfill shim for the String.prototype.replaceAll method to ensure compatibility with ESnext proposal in older JavaScript environments. | 36 |
es-shims/array-includes | A polyfill for the Array.prototype.includes method in older JavaScript environments | 43 |
es-shims/string.prototype.trim | An ES5 spec-compliant shim for removing whitespace from string edges | 13 |
es-shims/string.prototype.trimleft | A shim to add support for trimming whitespace from the left side of strings in JavaScript. | 7 |
es-shims/string.prototype.trimright | A shim that adds support for the trimRight method to the String prototype in JavaScript environments where it is not natively supported. | 8 |
es-shims/object.fromentries | A shim polyfill for the Object.fromEntries method to ensure compatibility with older JavaScript environments. | 33 |
es-shims/object.values | Shim to implement Object.values in environments lacking its support or spec compliance | 72 |
es-shims/object.entries | An ES2017 spec-compliant shim to ensure compatibility in environments lacking native Object.entries support. | 57 |
mathiasbynens/array.of | An ES2015 spec-compliant shim for the Array.of method in ECMAScript 6 | 15 |
es-shims/globalthis | Provides a polyfill for accessing the global object in ECMAScript environments where it is not supported | 155 |
es-shims/object-is | A shim for comparing values in JavaScript | 25 |
tvcutsem/harmony-reflect | A polyfill for ES6 Reflect and Proxy objects to provide compatibility with older browsers or Node.js versions. | 479 |
paulmillr/array.prototype.find | Fills ES6 Array.prototype.find method in older environments | 38 |