mirror of
https://github.com/ferdikoomen/openapi-typescript-codegen.git
synced 2025-12-08 20:16:21 +00:00
4 lines
90 B
TypeScript
4 lines
90 B
TypeScript
export function isString(val: any): val is string {
|
|
return typeof val === 'string';
|
|
}
|