Skip to content

Commit

Permalink
Update record.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
saschanaz authored Nov 27, 2023
1 parent b937ea7 commit 8c36095
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/build/utils/record.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export function filterMapRecord<T extends object, V>(
object: Record<string, T> | undefined,
mapper: (key: string, value: T) => V | undefined,
forNamespace?: boolean
forNamespace?: boolean,
): Record<string, V> | undefined {
if (!object) {
return;
Expand Down

0 comments on commit 8c36095

Please sign in to comment.