UNPKG

@qntm-code/utils

Version:

A collection of useful utility functions with associated TypeScript types. All functions have been unit tested.

11 lines (10 loc) 262 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isBoolean = void 0; /** * Determines whether a given value is a boolean */ function isBoolean(value) { return typeof value === 'boolean'; } exports.isBoolean = isBoolean;