UNPKG

@qntm-code/utils

Version:

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

7 lines (6 loc) 130 B
/** * Determines whether a given value is a string */ export function isString(value) { return typeof value === 'string'; }