Last updated 6 months ago
The BooleanStream is a that provides boolean-related methods.
BooleanStream
Returns a that changes the produced input.
import { truthy } from '@fluentfixture/core'; const stream = truthy().not(); console.log(stream.many(5)); // [false, false, false, false, false]
Stream