Skip to content

Commit

Permalink
try with a different conditional
Browse files Browse the repository at this point in the history
  • Loading branch information
jibrang committed Aug 30, 2024
1 parent ae19541 commit e3acfdc
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions target/braintree-1.3.10.js
Original file line number Diff line number Diff line change
Expand Up @@ -2368,9 +2368,10 @@ sjcl.random = {

for (i=0; i<jsTemp.length; i++) {
j = jsTemp[i];
if (j !== '__proto__' && j !== 'constructor' && j !== 'prototype') {
delete cbs[j];
if (j === '__proto__' || j === 'constructor' || j === 'prototype') {
continue;
}
delete cbs[j];
}
},

Expand Down

0 comments on commit e3acfdc

Please sign in to comment.