You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

6 lines
345 B

import { Int8Array } from '../utils/globals.js';
import { integer } from './integer.js';
import { typedIntArrayArbitraryArbitraryBuilder } from './_internals/builders/TypedIntArrayArbitraryBuilder.js';
export function int8Array(constraints = {}) {
return typedIntArrayArbitraryArbitraryBuilder(constraints, -128, 127, Int8Array, integer);
}