ts
import { O } from "@duplojs/utils";
interface Input {
name: string;
age?: number;
}
const input: Input = {
name: "Mathieu",
age: undefined,
};
const entries = O.entries(input);
// 💦
void entries;
