* Returns the node more strictly typed iff it is of the given type. Otherwise, * returns null.
(node)
| 6075 | */ |
| 6076 | |
| 6077 | function checkSymbolNodeType(node) { |
| 6078 | if (node && (node.type === "atom" || NON_ATOMS.hasOwnProperty(node.type))) { |
| 6079 | // $FlowFixMe |
| 6080 | return node; |
| 6081 | } |
| 6082 | |
| 6083 | return null; |
| 6084 | } |
| 6085 | // CONCATENATED MODULE: ./src/spacingData.js |
| 6086 | /** |
| 6087 | * Describes spaces between different classes of atoms. |
no outgoing calls
no test coverage detected