(value1: any, value2: any)
| 75 | * Test two values for strict equality, accounting for the fact that `NaN !== NaN`. |
| 76 | */ |
| 77 | export 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. */ |
| 82 | export function getDefaultAttributeToPropertyInputs( |
no outgoing calls
no test coverage detected
searching dependent graphs…