How Node.js Buffer.from(str, 'hex') might be implemented?
https://gist.github.com/fuadop/88aaf88f07771c88de10a3eeb70edff1
Dec 13, 20241 min read20
Search for a command to run...
Articles tagged with #javascript
https://gist.github.com/fuadop/88aaf88f07771c88de10a3eeb70edff1
https://gist.github.com/fuadop/90f67285e6f250c76aafd698ba764331
/** * @param {string} b * @returns {string} */ const btoa = (b) => { let s = ''; const bytes = new Uint8Array(b.split('').map(x => x.charCodeAt(0))); const ALPHABET_TABLE = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz01234567...