1 | ;
|
2 | Object.defineProperty(exports, "__esModule", { value: true });
|
3 | exports.base64Pad = void 0;
|
4 | /**
|
5 | * @name base64Pad
|
6 | * @description Adds padding characters for correct length
|
7 | */
|
8 | function base64Pad(value) {
|
9 | return value.padEnd(value.length + (value.length % 4), '=');
|
10 | }
|
11 | exports.base64Pad = base64Pad;
|