kepler-chat/src/lib/utils/is.ts
Thomas G. Lopes 7c216dc18b working chat
2025-06-16 18:50:51 +01:00

3 lines
97 B
TypeScript

export function isString(value: unknown): value is string {
return typeof value === 'string';
}