Skip to content

Commit 0c18100

Browse files
authored
Merge pull request #15 from unagidev/develop
fix(helpers): Fixing missing annotation in isEqual function
2 parents 737d34d + 42cf16e commit 0c18100

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)