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