Skip to content

Commit

Permalink
deno fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
oscarotero committed Jun 29, 2024
1 parent 52f1c1d commit 6a304fc
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion plugins/nav.ts
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,11 @@ function searchData(parts: string[], menu: NavData): NavData | undefined {
}

// Convert TempNavData to NavData
function convert(temp: TempNavData, parent?: NavData, order?: (a: Data, b: Data) => number): NavData {
function convert(
temp: TempNavData,
parent?: NavData,
order?: (a: Data, b: Data) => number,
): NavData {
const data: NavData = {
slug: temp.slug,
data: temp.data,
Expand Down

0 comments on commit 6a304fc

Please sign in to comment.