Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/siddhigate/js-polyfills
Polyfills for JS methods
https://github.com/siddhigate/js-polyfills
javascript javascript-array-methods javascript-polyfills
Last synced: 3 months ago
JSON representation
Polyfills for JS methods
- Host: GitHub
- URL: https://github.com/siddhigate/js-polyfills
- Owner: siddhigate
- License: mit
- Created: 2022-09-04T02:14:51.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-02-16T04:49:48.000Z (over 1 year ago)
- Last Synced: 2024-04-27T15:36:55.469Z (7 months ago)
- Topics: javascript, javascript-array-methods, javascript-polyfills
- Language: JavaScript
- Homepage:
- Size: 91.8 KB
- Stars: 98
- Watchers: 2
- Forks: 24
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# js-polyfills
Polyfills for JS methods:
## Promise methods:
This repo contains the polyfills of the following Promise methods:
- all
- any
- race
- allSettled
## Array methods:
This repo contains the polyfills of the following array methods:
### Searching methods:
1. at
2. find
3. findIndex
4. findLast
5. findLastIndex
6. lastIndexOf
7. includes
8. indexOf
9. some
10. every### Manipulation (Mutating) methods:
1. unshift
2. pop
3. push
4. shift
5. fill
6. reverse
7. sort
8. splice
9. copyWithin### Iterative methods
1. forEach
### Map, filter, and reduce
1. map
2. filter
3. reduce
4. reduceRight### Returning array iterator methods
1. keys
2. values
3. entries
### Other operations methods1. slice
2. concat
3. flat
4. flatMap
5. join