Files
2019-03-13 08:20:58 +00:00

5 lines
81 B
JavaScript

function roundtrip(data) {
var encoded = btoa(data);
return atob(encoded);
}