Usage
This package can be installed as a dependency or used directly.
Usage as ECMAScript module
import { isBoolean } from "https://esm.sh/@vangware/predicates";
isBoolean(true); // true
isBoolean(false); // true
isBoolean(undefined); // false
<script type="module">
import { isBoolean } from "https://esm.sh/@vangware/predicates";
isBoolean(true); // true
isBoolean(false); // true
isBoolean(undefined); // false
</script>
Usage with local installation
First:
npm i @vangware/predicates
And then:
import { isBoolean } from "@vangware/predicates";
isBoolean(true); // true
isBoolean(false); // true
isBoolean(undefined); // false
Documentation
Documentation can be found HERE. It is auto-generated with typedoc based on the JSDocs and the types in the source. Shouldn't be necessary to read this, code editors like VSCode integrate the documentation in the UI.
Changelog
Changelog can be found HERE.
Test coverage
Test coverage can be found HERE.