(s)
| 128 | } |
| 129 | |
| 130 | const slugify = (s) => |
| 131 | s |
| 132 | .toLowerCase() |
| 133 | .replace(/[^a-z0-9]+/g, "-") |
| 134 | .replace(/^-+|-+$/g, "") || "project"; |
| 135 | |
| 136 | function findReadme(dir) { |
| 137 | for (const f of fs.readdirSync(dir)) { |
no outgoing calls
no test coverage detected