1 | ;
|
2 | Object.defineProperty(exports, "__esModule", { value: true });
|
3 | exports.base64Trim = void 0;
|
4 | /**
|
5 | * @name base64Trim
|
6 | * @description Trims padding characters
|
7 | */
|
8 | function base64Trim(value) {
|
9 | while (value.length && value.endsWith('=')) {
|
10 | value = value.slice(0, -1);
|
11 | }
|
12 | return value;
|
13 | }
|
14 | exports.base64Trim = base64Trim;
|