UNPKG

dify-components

Version:

This is a modern component library template based on Turborepo+Vue 3.5+TypeScript.

13 lines (8 loc) 176 B
# String Utilities ## isString > Determines if a value is a string. ```ts import { isString } from '@difylib/utils'; isString('hello'); // true isString(123); // false ```