You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Encodings are kept track of in a regular JavaScript Object. This causes problems when keys are requested, which exist in the default JavaScript Object prototype. For example:
Encodings are kept track of in a regular JavaScript Object. This causes problems when keys are requested, which exist in the default JavaScript Object prototype. For example:
A fix would be to initialize such look-up objects as
Object.create(null)
(i.e. a null-prototype object).The text was updated successfully, but these errors were encountered: