(error)
| 3 | |
| 4 | const LIQUID_ERROR_NAMES = new Set(['RenderError', 'ParseError', 'TokenizationError']) |
| 5 | const isLiquidError = (error) => |
| 6 | error instanceof Error && error.name && LIQUID_ERROR_NAMES.has(error.name) |
| 7 | |
| 8 | // Returns a string by wrapping `renderContent()`. The input string to |
| 9 | // `renderContent` is one that contains Liquid and Markdown. The output |
no outgoing calls
no test coverage detected