tor-browser

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

is-extensible.js (423B)


      1 // |reftest| module
      2 // Copyright (C) 2016 the V8 project authors. All rights reserved.
      3 // This code is governed by the BSD license found in the LICENSE file.
      4 /*---
      5 esid: sec-module-namespace-exotic-objects-isextensible
      6 description: The [[IsExtensible]] internal method returns `false`
      7 flags: [module]
      8 ---*/
      9 
     10 import * as ns from './is-extensible.js';
     11 
     12 assert.sameValue(Object.isExtensible(ns), false);
     13 
     14 reportCompare(0, 0);