test262/test/built-ins/Uint8Array/fromBase64/length.js

17 lines
425 B
JavaScript

// Copyright (C) 2024 Kevin Gibbons. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-uint8array.frombase64
description: >
Uint8Array.fromBase64.length is 1.
includes: [propertyHelper.js]
features: [uint8array-base64, TypedArray]
---*/
verifyProperty(Uint8Array.fromBase64, 'length', {
value: 1,
enumerable: false,
writable: false,
configurable: true
});