export function isObject(o: unknown): o is Record { return typeof o === 'object' && o !== null; }