(obj)
| 21440 | }); // only return elements with values |
| 21441 | } |
| 21442 | function values(obj) { |
| 21443 | return Object.keys(obj).reduce(function(arr, key) { |
| 21444 | arr.push(obj[key]); |
| 21445 | return arr; |
| 21446 | }, []); |
| 21447 | } |
| 21448 | function omit(obj, exclusions) { |
| 21449 | // eslint-disable-next-line @typescript-eslint/no-explicit-any |
| 21450 | var result = {}; |
no outgoing calls
no test coverage detected