Skip to content

Commit

Permalink
style: ;
Browse files Browse the repository at this point in the history
  • Loading branch information
eartharoid committed Nov 16, 2024
1 parent 307b67d commit b16c92d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/util/data.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export function flatten(object) {
try {
let j = JSON.parse(v);
if (typeof j === 'object') v = flatten(j);
else v = String(j)
else v = String(j);
} catch {
/* empty */
}
Expand Down

0 comments on commit b16c92d

Please sign in to comment.