blob: 42a33618d484932f7fdd7d1e26a3178d5afe974b [file] [log] [blame]
// Copyright (C) 2017 Josh Wolfe. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: pending
description: BigInt.asUintN property descriptor
info: |
BigInt.asUintN ( bits, bigint )
17 ECMAScript Standard Built-in Objects
includes: [propertyHelper.js]
features: [BigInt]
---*/
assert.sameValue(typeof BigInt.asUintN, 'function');
verifyProperty(BigInt, "asUintN", {
enumerable: false,
writable: true,
configurable: true
});