Skip to content

Commit

Permalink
remove console log
Browse files Browse the repository at this point in the history
  • Loading branch information
kwaroran committed Nov 9, 2023
1 parent dfa0f1f commit dff5664
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/ts/plugins/embedworker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,6 @@ prop.push(
prop.forEach( function( prop ) {
if( (!whitelist.includes(prop)) && (!prop.startsWith('HTML')) ) {
try {
console.log(prop)
Object.defineProperty( globaly, prop, {
get : function() {
throw "Security Exception: cannot access "+prop;
Expand All @@ -117,7 +116,6 @@ prop.forEach( function( prop ) {
}
}
else{
console.log(`allow ${prop}`)
}
});

Expand Down

0 comments on commit dff5664

Please sign in to comment.