2024-01-22 02:09:11 +01:00
|
|
|
// Copyright (C) 2024 Kevin Gibbons. All rights reserved.
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
|
|
esid: sec-uint8array.fromhex
|
|
|
|
description: >
|
|
|
|
Uint8Array.fromHex is not a constructor function.
|
|
|
|
includes: [isConstructor.js]
|
2024-03-12 06:59:56 +01:00
|
|
|
features: [uint8array-base64, TypedArray, Reflect.construct]
|
2024-01-22 02:09:11 +01:00
|
|
|
---*/
|
|
|
|
|
|
|
|
assert(!isConstructor(Uint8Array.fromHex), "Uint8Array.fromHex is not a constructor");
|
|
|
|
|
|
|
|
assert.throws(TypeError, function() {
|
|
|
|
new Uint8Array.fromHex('');
|
|
|
|
});
|