(node)
| 27 | } |
| 28 | |
| 29 | function toEnd(node) { |
| 30 | if(node instanceof Token) { |
| 31 | return node.endOffset + 1; |
| 32 | } |
| 33 | return node.endOffset; |
| 34 | } |
| 35 | |
| 36 | //----------------------------------------------------------- |
| 37 | // Markdown |
no outgoing calls
no test coverage detected