cache-polyfill icon indicating copy to clipboard operation
cache-polyfill copied to clipboard

Service Worker Cache polyfill extracted from https://jakearchibald.github.io/trained-to-thrill/

Results 5 cache-polyfill issues
Sort by recently updated
recently updated
newest added

May u should merge this [PR](https://github.com/dominiccooney/cache-polyfill/pull/22) from @QingLeiLi to avoid this error. ```javascript (anonymous function) internal:///Users/vuchan/Development/WorkSpace/***/node_modules/[email protected]@serviceworker-cache-polyfill/index.js:19 ``` ```javascript (function() { > 19 | var nativeAddAll = Cache.prototype.addAll; 20 | var...

You might get "Cache not defined" issue on serviceworker-cache-pollyfill, which was fixed.

```javascript ReferenceError: Cache is not defined ``` ```javascript (anonymous function) internal:///Users/vuchan/Development/WorkSpace/***/node_modules/[email protected]@serviceworker-cache-polyfill/index.js:19 ``` ```javascript (function() { > 19 | var nativeAddAll = Cache.prototype.addAll; 20 | var userAgent = navigator.userAgent.match(/(Firefox|Chrome)\/(\d+\.)/); 21 |...

Looking at the source, I realize this may not be the goal of this project. But, I came to this project hoping to find a Cache polyfill for node.js. In...

> Obsolete polyfill for the ServiceWorker cache API. Chrome 46 and Opera 33 support addAll now. I think this is wrong since `addAll()` gets new algorithm soon. I am not...