2024-03-31T12:52:33Z

Title

Github User cheetosysst@cheetosysst
const foo = "hello";
const bar = { name: 123, data: [null, undefined, await call()] };

console.log(bar, foo);
// Eiusmod ut duis sit sunt irure ea proident fugiat.Eiusmod ut duis sit sunt irure ea proident fugiat.Eiusmod ut duis sit sunt irure ea proident fugiat.Eiusmod ut duis sit sunt irure ea proident fugiat.

function parsePostNumber(
page: string | string[] | undefined,
): number | undefined {
const parsedIndex = safeParse(PageIndexSchema, Number(page));
if (parsedIndex.success) return parsedIndex.output;
return undefined;
}