/** * Returns a `Associative` instance for objects preserving their type. * * @tsplus static Associative/Ops object */ export function object(): Associative { return Associative((x, y) => Object.assign({}, x, y)) }