tor-browser

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

compare-array-empty.js (314B)


      1 // Copyright (C) 2015 the V8 project authors. All rights reserved.
      2 // This code is governed by the BSD license found in the LICENSE file.
      3 
      4 /*---
      5 description: >
      6    Empty arrays of are equivalent.
      7 includes: [compareArray.js]
      8 ---*/
      9 
     10 assert.compareArray([], [], 'Empty arrays are equivalent.');
     11 
     12 reportCompare(0, 0);