(tokens, i, options)
| 53 | } |
| 54 | |
| 55 | function handleIf(tokens, i, options) { |
| 56 | let tag = tokens[i].args[0] |
| 57 | if (options.defined.indexOf(tag) > -1) return i |
| 58 | for (let j = i + 1; j < tokens.length; j++) if (tokens[j].type == "meta_if_close" && tokens[j].args[0] == tag) |
| 59 | return j |
| 60 | } |
| 61 | |
| 62 | const titleCaseSmallWords = "a an the at by for in of on to up and as but with or nor if console.log".split(" "); |
| 63 |
no outgoing calls
no test coverage detected