(str)
| 4 | import { Tokenizer } from 'liquidjs' |
| 5 | |
| 6 | const tokenize = (str) => { |
| 7 | const tokenizer = new Tokenizer(str) |
| 8 | return tokenizer.readTopLevelTokens() |
| 9 | } |
| 10 | |
| 11 | // Return an array of just the conditional strings. |
| 12 | function getLiquidConditionals(str, tagNames) { |
no outgoing calls
no test coverage detected