Skip to content

Commit

Permalink
chore: remove unnecessary export
Browse files Browse the repository at this point in the history
  • Loading branch information
fi3ework committed Aug 26, 2022
1 parent d94cc9d commit 491c7fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vite-plugin-checker/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ function spawnChecker(
})
}

export function isObject(value: unknown): value is Record<string, any> {
function isObject(value: unknown): value is Record<string, any> {
return Object.prototype.toString.call(value) === '[object Object]'
}

Expand Down

0 comments on commit 491c7fc

Please sign in to comment.