blob: 8686aab858acb19d5190a201fdfa0f3166dad6eb [file] [log] [blame]
// 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)');