tor-browser

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

Source-String.js (630B)


      1 // Copyright 2015 Microsoft Corporation. All rights reserved.
      2 // This code is governed by the license found in the LICENSE file.
      3 
      4 /*---
      5 description: Test Object.Assign(target,...sources), string have own enumerable properties, so it can be wrapped to objects.
      6 esid: sec-object.assign
      7 ---*/
      8 
      9 var target = new Object();
     10 var result = Object.assign(target, "123");
     11 
     12 assert.sameValue(result[0], "1", 'The value of result[0] is expected to be "1"');
     13 assert.sameValue(result[1], "2", 'The value of result[1] is expected to be "2"');
     14 assert.sameValue(result[2], "3", 'The value of result[2] is expected to be "3"');
     15 
     16 reportCompare(0, 0);