tor-browser

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

is-function.js (299B)


      1 // Copyright (C) 2019 Sergey Rubanov. All rights reserved.
      2 // This code is governed by the BSD license found in the LICENSE file.
      3 
      4 /*---
      5 esid: sec-promise.any
      6 description: Promise.any is callable
      7 features: [Promise.any]
      8 ---*/
      9 
     10 assert.sameValue(typeof Promise.any, 'function');
     11 
     12 reportCompare(0, 0);