Skip to content

Commit

Permalink
Favor unknown over any
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikola Mihaylov committed Mar 29, 2021
1 parent 7477e1a commit 910e379
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Obfuscator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ class Obfuscator {
return tag;
}

private isPlainObject(value: any): value is PlainObject {
private isPlainObject(value: unknown): value is PlainObject {
return lodash.isPlainObject(value);
}
}
Expand Down

0 comments on commit 910e379

Please sign in to comment.