Skip to content

Commit

Permalink
style: fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
xiCO2k committed Jan 5, 2024
1 parent c2be6c8 commit 4cef8a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/loader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ const parseItem = (expr) => {
}

if (expr.kind === 'nullkeyword') {
return null;
return null
}

if (expr.kind === 'array') {
Expand Down Expand Up @@ -107,7 +107,7 @@ const convertToDotsSyntax = (list) => {
const data = {}

if (items === null) {
return data;
return data
}

Object.entries(items).forEach(([key, value]) => {
Expand Down

0 comments on commit 4cef8a2

Please sign in to comment.