export function isObjectLiteral(anything: unknown): anything is Record { return Boolean(anything) && anything.constructor === Object; }