tor-browser

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

botd.mjs (361B)


      1 /* This Source Code Form is subject to the terms of the Mozilla Public
      2 * License, v. 2.0. If a copy of the MPL was not distributed with this
      3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
      4 
      5 let bd = {};
      6 bd.detect = async function () {
      7  return { bot: false };
      8 };
      9 let load = async function () {
     10  return bd;
     11 };
     12 
     13 export { load, load as default };