"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = (b64, descriptor) => { const newlined = (b64.match(/.{1,64}/g) || []).join('\n'); return `-----BEGIN ${descriptor}-----\n${newlined}\n-----END ${descriptor}-----`; };