ponyfill
Here are 51 public repositories matching this topic...
https://developers.google.com/web/updates/2017/09/abortable-fetch
Currently it is only implemented in Firefox 57 and is coming to other browsers soon.
const controller = new AbortController();
const signal = controller.signal;
setTimeout(() => controller.abort(), 5000);
fetch(url, { signal }).then(response => {
return response.text();
}).then(text => {
console.lo-
Updated
Feb 18, 2020
The readme says
It's recommended to use this library in the form of a ponyfill, which doesn't inflict modifications of the global object.
The index.js file of the project does the ponyfill work already. Telling us to use the library in the form of a ponyfill is misleading, it should say something like "Th
-
Updated
Feb 18, 2020 - JavaScript
Documented in this spec: https://drafts.csswg.org/css-scroll-snap-1/#propdef-scroll-margin
This is how it'll be possible to set custom offsets without reimplementing the default scrolling behavior or changing the HTML structure to add wrapping elements with padding to accomplish the same thing.
-
Updated
Jan 30, 2020 - JavaScript
-
Updated
Feb 18, 2020 - JavaScript
-
Updated
Jan 27, 2020 - TypeScript
-
Updated
Jul 15, 2019 - JavaScript
-
Updated
Feb 6, 2020 - JavaScript
-
Updated
Jan 15, 2020 - JavaScript
-
Updated
Feb 16, 2020
-
Updated
May 31, 2019 - JavaScript
-
Updated
Oct 12, 2019 - JavaScript
-
Updated
Jan 18, 2020 - JavaScript
Mp3MediaRecorderconstructor has following signature:
constructor(stream: MediaStream, options?: { audioContext?: AudioContext });where the user of the library has the possibility to pass in their own audioContext.
This should be documented in the README.
-
Updated
Aug 18, 2019 - JavaScript
-
Updated
Feb 16, 2020 - TypeScript
-
Updated
Dec 19, 2018 - JavaScript
-
Updated
Nov 29, 2019 - JavaScript
-
Updated
Apr 11, 2018 - TypeScript
Improve this page
Add a description, image, and links to the ponyfill topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the ponyfill topic, visit your repo's landing page and select "manage topics."
If the document.domain property is set in the page,
_hasmodule throws error "Access is denied" when try to check window's property for example 'hasOwnProperty'.So I think it is better to change
_hasmodule like below.