tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

test_utils_atob.js (273B)


      1 /* Any copyright is dedicated to the Public Domain.
      2   http://creativecommons.org/publicdomain/zero/1.0/ */
      3 
      4 function run_test() {
      5  let data = ["Zm9vYmE=", "Zm9vYmE==", "Zm9vYmE==="];
      6  for (let d in data) {
      7    Assert.equal(CommonUtils.safeAtoB(data[d]), "fooba");
      8  }
      9 }