tor-browser

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

input.js (380B)


      1 // Webpack doesn't map import declarations well, so doing this forces binding
      2 // processing to only process the binding being cast when searching for
      3 // matches. That way we can properly test if the flow cast causes problems.
      4 import { aNamed } from "./src/mod";
      5 
      6 export default function root() {
      7  var value = (aNamed: Array<string>);
      8 
      9  console.log("pause here", root, value);
     10 }