Skip to content

Commit

Permalink
fix: syntax in stringify.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
arildm committed Oct 23, 2024
1 parent f0f8c67 commit c8b4138
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/scripts/stringify.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ try {
console.log("No module for stringify functions available")
}

export const getStringifier = (key?: string): Stringifier {
export function getStringifier(key?: string): Stringifier {
return key && stringifiers[key] ? stringifiers[key] : String
}

0 comments on commit c8b4138

Please sign in to comment.