Skip to content

Commit 42cf16e

Browse files
author
damianbartumeu
committed
fix(helpers): Fixing missing annotation in isEqual function
1 parent 9639646 commit 42cf16e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/helpers.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export const isArr = (value: any) => {
1010
return Array.isArray(value);
1111
};
1212

13-
export const isEqual = (a, b, opts) => {
13+
export const isEqual = (a: Object, b: Object, opts: Object) => {
1414
return deepEqual(a, b, opts);
1515
};
1616

0 commit comments

Comments
 (0)