astro-ghostcms/.pnpm-store/v3/files/8e/dccd68646b3c38fe994284e53ac...

5 lines
190 B
Plaintext

export default (b64, descriptor) => {
const newlined = (b64.match(/.{1,64}/g) || []).join('\n');
return `-----BEGIN ${descriptor}-----\n${newlined}\n-----END ${descriptor}-----`;
};