UNPKG

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