(obj)
| 1 | export default function getEmptyObjectKeys(obj) { |
| 2 | return Object.keys(obj).reduce((arr, key) => { |
| 3 | const val = String(obj[key]).trim(); |
| 4 | |
| 5 | if (!val) { |
| 6 | arr.push(key); |
| 7 | } |
| 8 | |
| 9 | return arr; |
| 10 | }, []); |
| 11 | } |
nothing calls this directly
no outgoing calls
no test coverage detected