Files
jwl-applet/src/uni_modules/lime-shared/isString/index.ts

7 lines
264 B
TypeScript
Raw Normal View History

2024-01-25 08:59:04 +08:00
// @ts-nocheck
/**
*
* @param str
* @returns true false
*/
export const isString = (str: unknown): str is string => typeof str === 'string';