Skip to content

Commit

Permalink
fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
pi0 committed Oct 24, 2023
1 parent c482589 commit 06ba4d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/defu.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ function _defu<T>(
// From sindresorhus/is-plain-obj
// MIT License
// Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
function _isPlainObject(value) {
function _isPlainObject(value: unknown): boolean {
if (value === null || typeof value !== "object") {
return false;
}
Expand Down

0 comments on commit 06ba4d8

Please sign in to comment.