(childArray: React.ReactNode[])
| 60 | * nesting — even when mixed with text or links. |
| 61 | */ |
| 62 | export function hasBlockMedia(childArray: React.ReactNode[]): boolean { |
| 63 | const { imageChildren } = classifyChildren(childArray); |
| 64 | return imageChildren.length >= 1; |
| 65 | } |
| 66 | |
| 67 | export function shallowArrayEqual(a?: string[], b?: string[]): boolean { |
| 68 | if (a === b) return true; |
no test coverage detected