mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
9 lines
205 B
JavaScript
9 lines
205 B
JavaScript
Cu.import("resource://services-sync/util.js");
|
|
|
|
function run_test() {
|
|
let data = ["Zm9vYmE=", "Zm9vYmE==", "Zm9vYmE==="];
|
|
for (let d in data) {
|
|
do_check_eq(Utils.safeAtoB(data[d]), "fooba");
|
|
}
|
|
}
|