@@ -29,9 +29,15 @@ export const illegalArgumentLists = [
2929 { description : "typed array (uint8)" , value : new Uint8Array ( ) } ,
3030 { description : "typed array (uint16)" , value : new Uint16Array ( ) } ,
3131 { description : "typed array (uint32)" , value : new Uint32Array ( ) } ,
32+ { description : "typed array (uint64)" , value : new BigUint64Array ( ) } ,
3233 { description : "typed array (int8)" , value : new Int8Array ( ) } ,
3334 { description : "typed array (int16)" , value : new Int16Array ( ) } ,
3435 { description : "typed array (int32)" , value : new Int32Array ( ) } ,
36+ { description : "typed array (int64)" , value : new BigInt64Array ( ) } ,
37+ { description : "typed array (float16)" , value : new Float16Array ( ) } ,
38+ { description : "typed array (float32)" , value : new Float32Array ( ) } ,
39+ { description : "typed array (float64)" , value : new Float64Array ( ) } ,
40+ { description : "typed array (clamped)" , value : new Uint8ClampedArray ( ) } ,
3541] ;
3642
3743/* OS platforms (based on https://nodejs.org/api/os.html#osplatform) */
0 commit comments