UNPKG

@tetcoin/util

Version:
16 lines (15 loc) 358 B
/** * @name isString * @summary Tests for a string. * @description * Checks to see if the input value is a JavaScript string. * @example * <BR> * * ```javascript * import { isString } from '@tetcoin/util'; * * console.log('isString', isString('test')); // => true * ``` */ export default function isString(value: any): value is string | String;