Code Monkey home page Code Monkey logo

hpolyfill's Introduction

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 this
    • set.forEach()
    • set.delete()
    • set.clear()
    • set.size
    • set[Symbol.iterator]()
  • Map
    • basic functionality
    • constructor arguments
    • convert -0 key into +0
    • map.set() returning this
    • map.forEach()
    • map.delete()
    • map.clear()
    • map.size
    • map[Symbol.iterator]()
  • Promise
    • basic functionality
    • Promise.all()
    • Promise.allSettled()
    • 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()
    • Object.fromEntries()
  • Number
    • Number.isNaN()
    • Number.isFinite()
  • Math
    • Math.sign()
    • Math.trunc()
  • String
    • String.raw()
    • string.includes()
    • string.repeat()
    • string.startsWith()
    • string.endsWith()
    • string.padStart()
    • string.padEnd()
    • string.trimStart()
    • string.trimEnd()
    • string[Symbol.iterator]()
  • Symbol
    • basic functionality
    • Symbol.for()
    • Symbol.keyFor()
    • Symbol.iterator
    • symbol.description
  • RAF
    • requestAnimationFrame()
    • cancelAnimationFrame()
  • Performance
    • performance.timeOrigin
    • performance.now()
  • Fetch (partial)
    • fetch()
    • Headers()
    • Request()
    • Response()

Fetch Polyfill Details

This polyfill lib only provides a partial implemention of the Fetch APIs. Since XMLHttpRequest is used internally, some features are not available.

Here are the polyfill details:

  • fetch(resource, init?)
    • resource can be either an url string or an instance of Request
    • init is optional and only accepts the following options:
      • method - request method
      • credentials - no cookies if set to 'omit'; otherwise, attach cookies
      • headers - either an instance of Headers, or an array of string arrays, or a plain object representing headers
  • Headers(init?)
    • full support
  • Request(resource?, init?)
    • resource and init are similar to fetch()
    • request.clone(), request.json() and request.text() are supported
  • Response(body?, init?)
    • body - optional response body
    • init - optional options
    • response.ok - true if the status code is between 200 and 299; false otherwise
    • response.clone(), response.json() and response.text() are supported

ps

If you find any problem with this lib or something necessary but not included, feel free to open an issue.

hpolyfill's People

Contributors

huang2002 avatar

Stargazers

 avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.