cal.pub0.org/lib/asStringOrNull.tsx

4 lines
96 B
TypeScript
Raw Normal View History

2021-08-19 12:32:51 +00:00
export function asStringOrNull(str: unknown) {
return typeof str === "string" ? str : null;
}