tor-browser

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

prop-desc.js (363B)


      1 // Copyright (C) 2024 Jordan Harband. All rights reserved.
      2 // See LICENSE for details.
      3 
      4 /*---
      5 author: Jordan Harband
      6 description: Promise.try property descriptor
      7 features: [promise-try]
      8 includes: [propertyHelper.js]
      9 ---*/
     10 
     11 verifyProperty(Promise, 'try', {
     12  value: Promise.try,
     13  writable: true,
     14  enumerable: false,
     15  configurable: true
     16 })
     17 
     18 reportCompare(0, 0);