Find keys with defined values
(values: Lookup, keys: Set<string>)
| 1130 | |
| 1131 | /** Find keys with defined values */ |
| 1132 | function findDefined(values: Lookup, keys: Set<string>) { |
| 1133 | eachProp(values, (value, key) => value != null && keys.add(key as any)) |
| 1134 | } |
| 1135 | |
| 1136 | /** Event props with "active handler" support */ |
| 1137 | const ACTIVE_EVENTS = [ |
no test coverage detected
searching dependent graphs…