| // Copyright 2009 the Sputnik authors. All rights reserved. |
| // This code is governed by the BSD license found in the LICENSE file. |
| When the Object function is called with one argument value, |
| and the value neither is null nor undefined, and is supplied, return ToObject(value) |
| description: Calling Object function with number argument value |
| if(typeof num !== 'number'){ |
| $ERROR('#1: num = 1.1 should be Number primitive'); |
| if (typeof obj !== "object") { |
| $ERROR('#2: Object(1.1) returns ToObject(1.1)'); |
| if (obj.constructor !== Number) { |
| $ERROR('#3: Object(1.1) returns ToObject(1.1)'); |
| if ((obj != 1.1)||(obj === 1.1)) { |
| $ERROR('#4: Object(1.1) returns ToObject(1.1)'); |