mirror of
https://github.com/em-squared/5e-drs.git
synced 2025-10-30 13:14:20 +00:00
7 lines
183 B
JavaScript
7 lines
183 B
JavaScript
export function encode (o) {
|
|
return btoa(unescape(encodeURIComponent(JSON.stringify(o))))
|
|
}
|
|
|
|
export function decode (s) {
|
|
return JSON.parse(decodeURIComponent(escape(atob(s))))
|
|
}
|