polyfill icon indicating copy to clipboard operation
polyfill copied to clipboard

JavaScript Polyfills, Shims and More

Results 18 polyfill issues
Sort by recently updated
recently updated
newest added

Now ie11 dont support `new window.MouseEvent('click')` - https://caniuse.com/?search=mouseEvent%20constructor Add support for this please (https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent/MouseEvent#polyfill).

- Fix for Safari 10 which doesn't remove trailing `?` question mark. Force use of polyfill. - Fix the URLSearchParams constructor polyfill to ensure `(new URLSearchParams()) instanceof URLSearchParams` is true...

https://url.spec.whatwg.org/#dom-urlsearchparams-sort

Pls, make polyfill for latest chrome (canary). All polyfills is outdated. https://hacks.mozilla.org/2014/04/coordinate-conversion-made-easy/ https://drafts.csswg.org/cssom-view/ Very need for touch events, and global events.

enhancement

> Uncaught TypeError: Cannot read property 'isNaN' of undefined https://github.com/inexorabletash/polyfill/blob/master/polyfill.js#L565 Use babel 7.5.6 and @babel/env preset. What's wrong?

General comment. I was able to get this working in Mirth Connect which runs JS on top of Rhino with the following changes. Starting with: https://github.com/inexorabletash/polyfill/blob/master/polyfill.js as the base I...

Currently `new CustomEvent('!').constructor === CustomEvent` returns `false` in IE11, which is a hell of a bummer for anything else that is either polyfilling or feature detecting CustomEvent after this file...

Right now it's not possible to test (in Node env, Mocha for example) component which uses this URL polyfill because it fails on: ``` url.js:482 }(self)); ^ ReferenceError: self is...

i try this function https://developers.google.com/web/updates/2012/06/How-to-convert-ArrayBuffer-to-and-from-String ``` function ab2str(buf) { return String.fromCharCode.apply(null, new Uint16Array(buf)); } function str2ab(str) { var buf = new ArrayBuffer(str.length*2); // 2 bytes for each char var bufView...