MCPcopy Create free account
hub / github.com/DjDeveloperr/deno_desktop / decode

Function decode

examples/extern/gmath.bundle.js:162–170  ·  view source on GitHub ↗
(b64)

Source from the content-addressed store, hash-verified

160export { Rad as Rad };
161export { Deg as Deg };
162function 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}
171const importMeta = {
172 url: "https://deno.land/x/lz4@v0.1.2/wasm.js",
173 main: false

Callers 1

gmath.bundle.jsFile · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected