blob: bab367e171eb8cc8a5de0c4f4334bd4be7df4e95 [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-2
description: >
Object.prototype.valueOf - typeof
Object.prototype.valueOf.call(false)==="object"
---*/
assert.sameValue(typeof Object.prototype.valueOf.call(false), "object", 'typeof Object.prototype.valueOf.call(false)');