forked from Wroclaw/WorkshopTasker
4 lines
98 B
TypeScript
4 lines
98 B
TypeScript
|
export function isString(value: unknown): value is string {
|
||
|
return typeof value === "string";
|
||
|
}
|