Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
vCaisim committed Nov 26, 2024
1 parent ed1ed1d commit 67d065a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export function parseAndTransformHtmlByTag(
const transformContent = (input: string): string => {
return input.replace(regex, (_match, tagName, content) => {
const transformFn = transformMap[tagName]
let transformedContent = transformFn ? transformFn(content) : content
const transformedContent = transformFn ? transformFn(content) : content
return transformedContent
})
}
Expand Down Expand Up @@ -66,10 +66,10 @@ export function parseYamlBoolean(value: string): boolean | null {
return null
}

function increment(value: number) {
function increment(value: number): number {
return value + 1
}

function decrement(value: number) {
function decrement(value: number): number {
return value - 1
}

0 comments on commit 67d065a

Please sign in to comment.