UNPKG

hd-utils

Version:

A handy utils for modern JS developers

7 lines (6 loc) 228 B
/** * @description If the type of the value is a string, return true, otherwise return false. * @param {unknown} value - unknown */ export declare const isString: (value: unknown) => value is string; export default isString;