@vangware/predicates
TypeScript icon, indicating that this package has built-in type declarations

1.2.24 • Public • Published

Vangware's Predicates

Coverage License NPM Version Open Issues

🧐 Predicate util functions

Usage

This package can be installed as a dependency or used directly.

Usage as ECMAScript module

🦕 In JS or deno:

import { isBoolean } from "https://esm.sh/@vangware/predicates";

isBoolean(true); // true
isBoolean(false); // true
isBoolean(undefined); // false

🌎 Or in the browser:

<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:

# If you use npm
npm install @vangware/predicates
# If you use pnpm
pnpm add @vangware/predicates
# If you use yarn
yarn add @vangware/predicates

And then:

import { isBoolean } from "@vangware/predicates";

isBoolean(true); // true
isBoolean(false); // true
isBoolean(undefined); // false

Documentation

Documentation is available HERE. It is auto-generated with typedoc based on the JSDocs and the types in the source. It shouldn't be necessary to read this. Code editors like VS Code integrate the documentation in the UI.

Changelog

Changelog can be found HERE.

Test coverage

Test coverage can be found HERE.

Install

npm i @vangware/predicates

DownloadsWeekly Downloads

181

Version

1.2.24

License

MIT

Unpacked Size

38.8 kB

Total Files

69

Last publish

Collaborators

  • lukeshiru