File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change 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+ */
17export default function testDiff ( input1 :any | object | Array < any > , input2 :any | object | Array < any > , deep :boolean ) :boolean ;
Original file line number Diff line number Diff line change 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+ */
17export default function testDiff ( input1 :any | object | Array < any > , input2 :any | object | Array < any > , deep :boolean ) :boolean ;
You can’t perform that action at this time.
0 commit comments