4 lines
99 B
TypeScript
4 lines
99 B
TypeScript
|
|
export function is_object(x) {
|
||
|
|
return x !== null && typeof x === "object" && !Array.isArray(x)
|
||
|
|
}
|