tor-browser

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

is-function.js (405B)


      1 // Copyright (C) 2024 Leo Balter. All rights reserved.
      2 // This code is governed by the BSD license found in the LICENSE file.
      3 
      4 /*---
      5 esid: sec-regexp.escape
      6 description: RegExp.escape is a function
      7 info: |
      8  RegExp.escape is a built-in function of the RegExp object.
      9 features: [RegExp.escape]
     10 ---*/
     11 
     12 assert.sameValue(typeof RegExp.escape, 'function', 'RegExp.escape is a function');
     13 
     14 reportCompare(0, 0);