(text)
| 1 | import { outdent } from "outdent"; |
| 2 | const indent = (text) => |
| 3 | text |
| 4 | .split("\n") |
| 5 | .map((line) => (line ? ` ${line}` : line)) |
| 6 | .join("\n"); |
| 7 | |
| 8 | const snippets = [ |
| 9 | "/* comment */ 'use strict';", |
no test coverage detected
searching dependent graphs…