es-shims / es5-shim

ECMAScript 5 compatibility shims for legacy (and modern) JavaScript engines
MIT License
7.12k stars 899 forks source link

⚠️ `webkitStorageInfo` is going away #482

Closed tomayac closed 1 year ago

tomayac commented 1 year ago

I don't think it's a major issue for this package, but just wanted to let you know that on the Chrome team we're planning on removing webkitStorageInfo, which you use: https://github.com/es-shims/es5-shim/blob/bcdbd318b48c39c3cd822b1a36bcaa4538cf573c/es5-shim.js#L1074

Just a heads up. Already today the naming of the interface you get back has changed:

window.webkitStorageInfo
// DeprecatedStorageInfo {}
ljharb commented 1 year ago

The only way we use it is to exclude it, since it does the very terrible thing (that i hope no new globals ever do) of logging to the console merely by accessing the global, so we shouldn’t be impacted. Thanks for the heads up!