mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-03-19 07:20:00 +00:00
3 lines
212 B
TypeScript
3 lines
212 B
TypeScript
export function isScalar(value: unknown): value is string | number | boolean | null | undefined {
|
|
return value == null || typeof value === "string" || typeof value === "number" || typeof value === "boolean";
|
|
}
|