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 | 2x 2x 8929x 8929x 2x 2x 2x 2x 2x 2x 2x 29552x 29552x 29552x 29552x 2x 2x 2x 29492x 29492x | /** @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) {
return a != a
? 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);
}
|