tor-browser

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

Target-Object.js (549B)


      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: >
      6  Test the first argument(target) of Object.Assign(target,...sources),
      7  if target is Object,its properties will be the properties of new object.
      8 es6id:  19.1.2.1.1
      9 ---*/
     10 
     11 var target = {
     12  foo: 1
     13 };
     14 var result = Object.assign(target, {
     15  a: 2
     16 });
     17 
     18 assert.sameValue(result.foo, 1, "The value should be {foo: 1}.");
     19 assert.sameValue(result.a, 2, "The value should be {a: 2}.");
     20 
     21 reportCompare(0, 0);