UNPKG

@kvaser/canking-api

Version:

CanKing API to communicate with the CanKing service using Node.js.

8 lines (7 loc) 254 B
/** * 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;