(submitter: HTMLElement)
| 173 | } |
| 174 | |
| 175 | export function hasReactClientActionAttributes(submitter: HTMLElement) { |
| 176 | // CSR: https://github.com/facebook/react/blob/942eb80381b96f8410eab1bef1c539bed1ab0eb1/packages/react-dom-bindings/src/client/ReactDOMComponent.js#L482-L487 |
| 177 | // SSR: https://github.com/facebook/react/blob/942eb80381b96f8410eab1bef1c539bed1ab0eb1/packages/react-dom-bindings/src/client/ReactDOMComponent.js#L2401 |
| 178 | const action = submitter.getAttribute('formAction') |
| 179 | return action && /\s*javascript:/i.test(action) |
| 180 | } |
no test coverage detected