open source
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
class WindowBase64{
|
||||
atob:(encodedString: string)=>string;
|
||||
btoa:(rawString: string)=> string;
|
||||
constructor(){
|
||||
this.atob=function(){return null;};
|
||||
this.btoa=function(){return null;};
|
||||
}
|
||||
}
|
||||
window["WindowBase64"]=WindowBase64;
|
||||
Reference in New Issue
Block a user