mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2026-08-26 13:32:32 +02:00
6 lines
175 B
TypeScript
6 lines
175 B
TypeScript
export function isObject(maybe: unknown): maybe is object {
|
|
return (
|
|
typeof maybe === 'object' && maybe !== null && !Array.isArray(maybe) && !(maybe instanceof Date)
|
|
);
|
|
}
|