()
| 12 | |
| 13 | /* istanbul ignore next */ |
| 14 | export function log() { |
| 15 | if (process.env.NODE_ENV !== "production") { |
| 16 | console.log("focusManager ----------"); |
| 17 | focusLaterElements.forEach(f => { |
| 18 | const check = f || {}; |
| 19 | console.log(check.nodeName, check.className, check.id); |
| 20 | }); |
| 21 | console.log("end focusManager ----------"); |
| 22 | } |
| 23 | } |
| 24 | /* eslint-enable no-console */ |
| 25 | |
| 26 | export function handleBlur() { |
nothing calls this directly
no outgoing calls
no test coverage detected