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) 256 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isString = void 0; /** * Determines whether a given value is a string */ function isString(value) { return typeof value === 'string'; } exports.isString = isString;