codec-bytes/base64

View on GitHub
src/byte1tochar2.js

Summary

Maintainability
A
0 mins
Test Coverage
export default function* byte1tochar2(alphabet, a) {
    yield alphabet[a >> 2];
    yield alphabet[63 & (a << 4)];
}