Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

grungey object.isfrozen hack in tv4.js line 118 #276

Open
kumarperla-gmail opened this issue Aug 30, 2021 · 0 comments
Open

grungey object.isfrozen hack in tv4.js line 118 #276

kumarperla-gmail opened this issue Aug 30, 2021 · 0 comments

Comments

@kumarperla-gmail
Copy link

Please let me know what below code is doing?

// Grungey Object.isFrozen hack
if (!Object.isFrozen) {
Object.isFrozen = function (obj) {
var key = "tv4_test_frozen_key";
while (obj.hasOwnProperty(key)) {
key += Math.random();
}
try {
obj[key] = true;
delete obj[key];
return false;
} catch (e) {
return true;
}
};
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant