4 lines
96 B
Plaintext
4 lines
96 B
Plaintext
export function isObject(x: any): x is Object {
|
|
return x !== null && typeof x === 'object';
|
|
}
|