(b64)
| 160 | export { Rad as Rad }; |
| 161 | export { Deg as Deg }; |
| 162 | function decode(b64) { |
| 163 | const binString = atob(b64); |
| 164 | const size = binString.length; |
| 165 | const bytes = new Uint8Array(size); |
| 166 | for(let i = 0; i < size; i++){ |
| 167 | bytes[i] = binString.charCodeAt(i); |
| 168 | } |
| 169 | return bytes; |
| 170 | } |
| 171 | const importMeta = { |
| 172 | url: "https://deno.land/x/lz4@v0.1.2/wasm.js", |
| 173 | main: false |