Skip to main content
Module

x/aax/dev_deps.ts>anyBoolean

Universal AAX API client
Latest
function anyBoolean
import { anyBoolean } from "https://deno.land/x/aax@v1.0.0-beta.1/dev_deps.ts";

matches any boolean or Boolean

import {
  anyBoolean,
  expect,
  test,
} from "https://deno.land/x/unitest@$VERSION/mod.ts";

test("should be any boolean", () => {
  expect(new Boolean(false)).toEqual(anyBoolean());
});

Returns

AnyBoolean