1
0
Fork 0
mirror of https://github.com/em-squared/5e-drs.git synced 2025-10-30 21:24:18 +00:00
5e-drs/docs/.vuepress/theme/util/homebrew.js

8 lines
183 B
JavaScript
Raw Normal View History

export function encode (o) {
return btoa(unescape(encodeURIComponent(JSON.stringify(o))))
}
export function decode (s) {
return JSON.parse(decodeURIComponent(escape(atob(s))))
}