Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | 2x 2x 8868x 8868x 2x 2x 2x 2x 2x 2x 2x 29383x 29383x 29383x 29383x 29383x 2x 2x 2x 29323x 29323x | /** @type {import('#client').Equals} */ export function equals(value) { return value === this.v; } /** * @param {unknown} a * @param {unknown} b * @returns {boolean} */ export function safe_not_equal(a, b) { // eslint-disable-next-line eqeqeq return a != a ? // eslint-disable-next-line eqeqeq b == b : a !== b || (a !== null && typeof a === 'object') || typeof a === 'function'; } /** @type {import('#client').Equals} */ export function safe_equals(value) { return !safe_not_equal(value, this.v); } |