Files
freeCodeCamp/client/tools/external-curriculum/patches.ts
2025-11-19 03:00:32 -08:00

8 lines
161 B
TypeScript

export const patchBlock = (meta: Record<string, unknown>) => {
const { blockLabel, ...rest } = meta;
return {
...rest,
blockType: blockLabel
};
};