tor-browser

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

module-code-other_FIXTURE.js (456B)


      1 // |reftest| skip -- not a test file
      2 // Copyright (C) 2018 Leo Balter. All rights reserved.
      3 // This code is governed by the BSD license found in the LICENSE file.
      4 
      5 // exports: default === 1612, local1 === 'one six one two', renamed === 'star', indirect === 'one six one two'
      6 
      7 export var local1 = 'one six one two';
      8 var local2 = 'star';
      9 export { local2 as renamed };
     10 export { local1 as indirect } from './module-code-other_FIXTURE.js';
     11 export default 1612;