1
0
Fork 0
mirror of https://github.com/em-squared/5e-drs.git synced 2025-10-30 05:04:21 +00:00
5e-drs/docs/.vuepress/theme/util/homebrew.js
2020-06-10 19:14:34 +02:00

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))))
}