blob: 627388ced1ef7e38f6a2990f2f93d115fa81afbe [file] [log] [blame]
// Copyright (C) 2017 Robin Templeton. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-bigint.prototype.valueof
description: BigInt.prototype.valueOf property descriptor
info: |
BigInt.prototype.valueOf ( )
17 ECMAScript Standard Built-in Objects
includes: [propertyHelper.js]
features: [BigInt]
---*/
verifyProperty(BigInt.prototype, "valueOf", {
writable: true,
enumerable: false,
configurable: true
});