summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Object/prototype/valueOf/15.2.4.4-1.js
blob: 177f71462d0d96de70408d03a1ccb79a1bc6854b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright (c) 2012 Ecma International.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
es5id: 15.2.4.4-1
description: >
    Object.prototype.valueOf - typeof
    Object.prototype.valueOf.call(true)==="object"
---*/

assert.sameValue(typeof Object.prototype.valueOf.call(true), "object", 'typeof Object.prototype.valueOf.call(true)');

reportCompare(0, 0);