/** * Self embed `Either` into `Either>`. * * @tsplus getter Either duplicate */ export function duplicate(self: Either): Either> { return self.extend(identity) }