Skip to content
This repository was archived by the owner on Jun 30, 2025. It is now read-only.

Latest commit

 

History

History
16 lines (10 loc) · 362 Bytes

File metadata and controls

16 lines (10 loc) · 362 Bytes

Boolean Stream

The BooleanStream is a Stream that provides boolean-related methods.

not()

Returns a BooleanStream that changes the produced input.

import { truthy } from '@fluentfixture/core';

const stream = truthy().not();

console.log(stream.many(5));
// [false, false, false, false, false]