MCPcopy
hub / github.com/Effect-TS/effect / assertFalse

Function assertFalse

packages/effect/test/util.ts:64–66  ·  view source on GitHub ↗
(self: boolean, message?: string, ..._: Array<never>)

Source from the content-addressed store, hash-verified

62}
63
64export function assertFalse(self: boolean, message?: string, ..._: Array<never>) {
65 strictEqual(self, false, message)
66}
67
68export function assertInclude(actual: string | undefined, expected: string, ..._: Array<never>) {
69 if (Predicate.isString(expected)) {

Callers

nothing calls this directly

Calls 1

strictEqualFunction · 0.70

Tested by

no test coverage detected