mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-22 05:38:03 +00:00
8 lines
188 B
JavaScript
8 lines
188 B
JavaScript
/**
|
|
* @name base64Pad
|
|
* @description Adds padding characters for correct length
|
|
*/
|
|
export function base64Pad(value) {
|
|
return value.padEnd(value.length + (value.length % 4), '=');
|
|
}
|