precompile checks

This commit is contained in:
visionmercer 2022-09-19 01:27:48 +02:00
commit 3edb188921
22 changed files with 458 additions and 9 deletions

View file

@ -1,3 +1,5 @@
$if atob = undefined then
$let atob = defined
Function atob$ (strng As String)
Const B64 = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"
Dim c1 As _Unsigned _Byte
@ -40,4 +42,5 @@ Function atob$ (strng As String)
End If
Next
atob$ = Buffer
End Function
End Function
$end if