tor-browser

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

module-import-unwrapped_FIXTURE.js (332B)


      1 // |reftest| skip -- not a test file
      2 // Copyright (C) 2019 Leo Balter. All rights reserved.
      3 // This code is governed by the BSD license found in the LICENSE file.
      4 
      5 await 1;
      6 
      7 export default Promise.resolve('default');
      8 
      9 export const x = Promise.reject('unwrapped rejection');
     10 export const y = Promise.resolve('unwrapped resolution');