UNPKG

217 BJavaScriptView Raw
1/**
2 * @name base64Trim
3 * @description Trims padding characters
4 */
5export function base64Trim(value) {
6 while (value.length && value.endsWith('=')) {
7 value = value.slice(0, -1);
8 }
9 return value;
10}