Package Exports
- hpolyfill
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (hpolyfill) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
HPolyfill
This is a lightweight(less than 10KB) polyfill lib which includes some common polyfills.
Usage
Just simply include one of the following script tags in your HTML to get the polyfills:
<!-- via jsdelivr -->
<script type="text/javascript" crossorigin="anonymous" src="https://cdn.jsdelivr.net/npm/hpolyfill@latest/dist/index.js"></script>
<!-- or via unpkg -->
<script type="text/javascript" crossorigin="anonymous" src="https://unpkg.com/hpolyfill@latest/dist/index.js"></script>
By the way, as a polyfill lib, this lib should be loaded first in most cases.
Polyfill list
- Set
- basic functionality
- constructor arguments
- convert
-0
key into+0
set.add()
returning thisset.forEach()
set.delete()
set.clear()
set.size
set[Symbol.iterator]()
- Map
- basic functionality
- constructor arguments
- convert
-0
key into+0
map.set()
returning thismap.forEach()
map.delete()
map.clear()
map.size
map[Symbol.iterator]()
- Promise
- basic functionality
Promise.all()
Promise.race()
Promise.resolve()
Promise.reject()
promise.finally()
- Array
Array.from()
Array.of()
array.includes()
array.fill()
array.find()
array.findIndex()
array.flat()
array.flatMap()
array.keys()
array.values()
array.entries()
array[Symbol.iterator]()
- Object
Object.assign()
Object.is()
Object.keys()
Object.values()
Object.entries()
- Number
Number.isNaN()
Number.isFinite()
- String
String.raw()
string.includes()
string.repeat()
string.startsWith()
string.endsWith()
string.padStart()
string.padEnd()
string[Symbol.iterator]()
- Symbol
- basic functionality
Symbol.for()
Symbol.keyFor()
Symbol.iterator
symbol.description
- RAF
requestAnimationFrame()
cancelAnimationFrame()
- Performance
performance.now()
ps
If you find any problem with this lib or something necessary but not included, feel free to open an issue.