Skip to content

Commit 2c04498

Browse files
committed
Fixed missing JSDoc in index.d.ts
1 parent 032dad5 commit 2c04498

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

dist/index.d.ts

+6
Original file line numberDiff line numberDiff line change
@@ -1 +1,7 @@
1+
/**
2+
* Returns true if input1 differs in any way from input2. Performs "deep" object/array traversal by default, comparing all reachable values.
3+
* @param {any} input1 A value/object to compare against input2.
4+
* @param {any} input2 A value/object to compare against input1.
5+
* @param {boolean} [deep=true] Set this operand to false to disable traversal and nested comparisons.
6+
*/
17
export default function testDiff(input1:any|object|Array<any>, input2:any|object|Array<any>, deep:boolean):boolean;

src/index.d.ts

+6
Original file line numberDiff line numberDiff line change
@@ -1 +1,7 @@
1+
/**
2+
* Returns true if input1 differs in any way from input2. Performs "deep" object/array traversal by default, comparing all reachable values.
3+
* @param {any} input1 A value/object to compare against input2.
4+
* @param {any} input2 A value/object to compare against input1.
5+
* @param {boolean} [deep=true] Set this operand to false to disable traversal and nested comparisons.
6+
*/
17
export default function testDiff(input1:any|object|Array<any>, input2:any|object|Array<any>, deep:boolean):boolean;

0 commit comments

Comments
 (0)