tor-browser

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

length.js (469B)


      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: >
      7  RegExp.escape.length property descriptor
      8 info: |
      9  17 ECMAScript Standard Built-in Objects
     10 includes: [propertyHelper.js]
     11 features: [RegExp.escape]
     12 ---*/
     13 
     14 verifyProperty(RegExp.escape, "length", {
     15  value: 1,
     16  writable: false,
     17  enumerable: false,
     18  configurable: true
     19 });
     20 
     21 reportCompare(0, 0);