(ch)
| 5011 | var HTML_TAG_CLOSE_RE = /^<\/([a-zA-Z]{1,15})[\s>]/; |
| 5012 | |
| 5013 | function isLetter(ch) { |
| 5014 | /*eslint no-bitwise:0*/ |
| 5015 | var lc = ch | 0x20; // to lower case |
| 5016 | return (lc >= 0x61/* a */) && (lc <= 0x7a/* z */); |
| 5017 | } |
| 5018 | |
| 5019 | module.exports = function htmlblock(state, startLine, endLine, silent) { |
| 5020 | var ch, match, nextLine, |
no outgoing calls
no test coverage detected
searching dependent graphs…