{"_id":"fast-base64-decode","_rev":"2941786","name":"fast-base64-decode","description":"A fast Base64 decoder with a low level API. If you want a high level API, look at [base64-js](https://github.com/beatgammit/base64-js).","dist-tags":{"latest":"2.0.0"},"maintainers":[{"name":"linusu","email":""}],"time":{"modified":"2023-04-13T09:33:04.000Z","created":"2018-08-20T16:36:10.337Z","2.0.0":"2022-10-30T13:50:56.305Z","1.0.0":"2018-08-27T12:44:28.866Z","0.0.1-security":"2018-08-20T16:36:10.337Z"},"users":{},"repository":{"type":"git","url":"git+https://github.com/LinusU/fast-base64-decode.git"},"versions":{"2.0.0":{"name":"fast-base64-decode","version":"2.0.0","keywords":["base64-decode","base64","decode"],"repository":{"type":"git","url":"git+https://github.com/LinusU/fast-base64-decode.git"},"license":"MIT","type":"module","exports":"./index.js","scripts":{"test":"standard && node test"},"devDependencies":{"standard":"^17.0.0"},"engines":{"node":"^12.20.0 || ^14.13.1 || >=16.0.0"},"types":"./index.d.ts","gitHead":"ad164216813a69429b359d1bc9cb0ce5bc130948","description":"A fast Base64 decoder with a low level API. If you want a high level API, look at [base64-js](https://github.com/beatgammit/base64-js).","bugs":{"url":"https://github.com/LinusU/fast-base64-decode/issues"},"homepage":"https://github.com/LinusU/fast-base64-decode#readme","_id":"fast-base64-decode@2.0.0","_nodeVersion":"18.11.0","_npmVersion":"8.19.2","dist":{"shasum":"5fb89b2b4530311b57d12f49c75cb6555b37f858","size":1826,"noattachment":false,"key":"/fast-base64-decode/-/fast-base64-decode-2.0.0.tgz","tarball":"http://registry.cnpm.dingdandao.com/fast-base64-decode/download/fast-base64-decode-2.0.0.tgz"},"_npmUser":{"name":"linusu","email":"linus@folkdatorn.se"},"directories":{},"maintainers":[{"name":"linusu","email":""}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/fast-base64-decode_2.0.0_1667137856079_0.30033387876351814"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-10-30T13:51:04.358Z","publish_time":1667137856305,"_cnpm_publish_time":1667137856305},"1.0.0":{"name":"fast-base64-decode","version":"1.0.0","license":"MIT","repository":{"type":"git","url":"git+https://github.com/LinusU/fast-base64-decode.git"},"scripts":{"test":"standard && node test"},"devDependencies":{"standard":"^11.0.1"},"keywords":["base64-decode","base64","decode"],"files":["index.d.ts","index.js"],"gitHead":"311cff2f11cf4307b0a432d30e74f1b76ee791b6","description":"A fast Base64 decoder with a low level API. If you want a high level API, look at [base64-js](https://github.com/beatgammit/base64-js).","bugs":{"url":"https://github.com/LinusU/fast-base64-decode/issues"},"homepage":"https://github.com/LinusU/fast-base64-decode#readme","_id":"fast-base64-decode@1.0.0","_npmVersion":"6.2.0","_nodeVersion":"10.8.0","_npmUser":{"name":"linusu","email":"linus@folkdatorn.se"},"dist":{"shasum":"b434a0dd7d92b12b43f26819300d2dafb83ee418","size":1134,"noattachment":false,"key":"/fast-base64-decode/-/fast-base64-decode-1.0.0.tgz","tarball":"http://registry.cnpm.dingdandao.com/fast-base64-decode/download/fast-base64-decode-1.0.0.tgz"},"maintainers":[{"name":"linusu","email":""}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/fast-base64-decode_1.0.0_1535373868782_0.8759769540265405"},"_hasShrinkwrap":false,"publish_time":1535373868866,"_cnpm_publish_time":1535373868866,"_cnpmcore_publish_time":"2021-12-16T17:36:22.009Z"},"0.0.1-security":{"name":"fast-base64-decode","version":"0.0.1-security","description":"security holding package","repository":{"type":"git","url":"git+https://github.com/npm/security-holder.git"},"gitHead":"ac50be87aafecba67fcacca3b32bf36a1f8f7a71","bugs":{"url":"https://github.com/npm/security-holder/issues"},"homepage":"https://github.com/npm/security-holder#readme","_id":"fast-base64-decode@0.0.1-security","_npmVersion":"6.4.0","_nodeVersion":"8.11.4","_npmUser":{"name":"kmanion","email":"kiera@npmjs.com"},"dist":{"shasum":"cf645c6cd200c8575e7afc9e6d4add6a7b4f3d33","size":423,"noattachment":false,"key":"/fast-base64-decode/-/fast-base64-decode-0.0.1-security.tgz","tarball":"http://registry.cnpm.dingdandao.com/fast-base64-decode/download/fast-base64-decode-0.0.1-security.tgz"},"maintainers":[{"name":"linusu","email":""}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/fast-base64-decode_0.0.1-security_1534782970253_0.9230673737088342"},"_hasShrinkwrap":false,"publish_time":1534782970337,"_cnpm_publish_time":1534782970337,"_cnpmcore_publish_time":"2021-12-16T17:36:22.181Z"}},"readme":"# Fast Base64 Decoding\n\nA fast Base64 decoder with a low level API. If you want a high level API, look at [base64-js](https://github.com/beatgammit/base64-js).\n\n## Installation\n\n```sh\nnpm install --save fast-base64-decode\n```\n\n## Usage\n\n```js\nimport base64Decode from 'fast-base64-decode'\n\n// You need to know the length of the decoded data\nconst result = new Uint8Array(13)\n\n// Pass the string to decode, and a `UInt8Array` where the bytes will be written\nbase64Decode('SGVsbG8sIFdvcmxkIQ==', result)\n```\n","_attachments":{},"homepage":"https://github.com/LinusU/fast-base64-decode#readme","bugs":{"url":"https://github.com/LinusU/fast-base64-decode/issues"},"license":"MIT"}