* Check whether a graphicFrame contains a table (`a:tbl`).
(node: SafeXmlNode)
| 30 | * Check whether a graphicFrame contains a table (`a:tbl`). |
| 31 | */ |
| 32 | function isTableFrame(node: SafeXmlNode): boolean { |
| 33 | const graphic = node.child('graphic') |
| 34 | const graphicData = graphic.child('graphicData') |
| 35 | return graphicData.child('tbl').exists() |
| 36 | } |
| 37 | |
| 38 | /** |
| 39 | * Check whether a graphicFrame contains a chart. |
no test coverage detected