* use named exports instead of default exports * fix tests Co-authored-by: Philipp Kühn <philippkuehn@MacBook-Pro-von-Philipp.local>
4 lines
93 B
TypeScript
4 lines
93 B
TypeScript
export function isString(value: any): value is string {
|
|
return typeof value === 'string'
|
|
}
|