(node: TSESTree.Node)
| 28 | return node.type === AST_NODE_TYPES.Property |
| 29 | }, |
| 30 | isObjectExpression(node: TSESTree.Node): node is TSESTree.ObjectExpression { |
| 31 | return node.type === AST_NODE_TYPES.ObjectExpression |
| 32 | }, |
| 33 | isPropertyWithIdentifierKey( |
| 34 | node: TSESTree.Node, |
| 35 | key: string, |
nothing calls this directly
no outgoing calls
no test coverage detected