File size: 287 Bytes
96af7c9
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import { ConstantArbitrary } from './_internals/ConstantArbitrary.js';
function constantFrom(...values) {
    if (values.length === 0) {
        throw new Error('fc.constantFrom expects at least one parameter');
    }
    return new ConstantArbitrary(values);
}
export { constantFrom };