Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: services/common/tests/unit/xpcshell.toml
/* Any copyright is dedicated to the Public Domain.
function run_test() {
let data = ["Zm9vYmE=", "Zm9vYmE==", "Zm9vYmE==="];
for (let d in data) {
Assert.equal(CommonUtils.safeAtoB(data[d]), "fooba");
}
}