mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-22 04:27:59 +00:00
11 lines
217 B
JavaScript
11 lines
217 B
JavaScript
/**
|
|
* @name base64Trim
|
|
* @description Trims padding characters
|
|
*/
|
|
export function base64Trim(value) {
|
|
while (value.length && value.endsWith('=')) {
|
|
value = value.slice(0, -1);
|
|
}
|
|
return value;
|
|
}
|