UNPKG
@kvaser/canking-api
Version:
beta (7.1.0-beta.241)
latest (7.5.1)
7.5.1
7.4.1
7.4.0
7.3.0
7.2.1
7.2.0
7.1.0
7.1.0-beta.241
7.1.0-beta.231
CanKing API to communicate with the CanKing service using Node.js.
@kvaser/canking-api
/
dist
/
models
/
deep_equal.d.ts
8 lines
(7 loc)
•
254 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
/** * Deep equality check between two values. *
@param
a - First value to compare. *
@param
b - Second value to compare. *
@returns
True if the values are deeply equal, false otherwise. */
export
default
function
deep_equal
<
T
>(
a: T, b: T
):
boolean
;