MCPcopy
hub / github.com/fengyuanchen/cropperjs / isString

Function isString

packages/utils/src/functions.ts:8–10  ·  view source on GitHub ↗
(value: unknown)

Source from the content-addressed store, hash-verified

6 * @returns {boolean} Returns `true` if the given value is a string, else `false`.
7 */
8export function isString(value: unknown): value is string {
9 return typeof value === 'string';
10}
11
12/**
13 * Check if the given value is not a number.

Callers 3

index.spec.tsFile · 0.90
$setActionMethod · 0.90
constructorMethod · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…