Skip to content

Commit cb4c0d6

Browse files
committedJun 12, 2023
chore: fix lint issue
1 parent 6aa42c6 commit cb4c0d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ export default function destr(value: any, options: Options = {}): any {
3939
if (_lval === "false") {
4040
return false;
4141
}
42-
// eslint-disable-next-line unicorn/no-null
4342
if (_lval === "null") {
43+
// eslint-disable-next-line unicorn/no-null
4444
return null;
4545
}
4646
if (_lval === "nan") {

0 commit comments

Comments
 (0)
Please sign in to comment.