Skip to content

Commit

Permalink
fix: lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
bingtsingw committed Apr 6, 2024
1 parent d1c6f61 commit 7ccbd28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/misc/stringify.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const isJson = (value: any): boolean => {
try {
const _parse = JSON.parse(_value);
return typeof _parse === 'object' && _parse !== null;
} catch (e) {
} catch (_e) {
return false;
}
};
Expand Down

0 comments on commit 7ccbd28

Please sign in to comment.