MCPcopy
hub / github.com/angular/angular / strictEquals

Function strictEquals

packages/elements/src/utils.ts:77–79  ·  view source on GitHub ↗
(value1: any, value2: any)

Source from the content-addressed store, hash-verified

75 * Test two values for strict equality, accounting for the fact that `NaN !== NaN`.
76 */
77export function strictEquals(value1: any, value2: any): boolean {
78 return value1 === value2 || (value1 !== value1 && value2 !== value2);
79}
80
81/** Gets a map of default set of attributes to observe and the properties they affect. */
82export function getDefaultAttributeToPropertyInputs(

Callers 1

utils_spec.tsFile · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…