(name: string)
| 263 | const dirAbs = cleanSub ? path.join(topAbs, cleanSub) : topAbs |
| 264 | const dirRel = toPosix(path.relative(root, dirAbs)) |
| 265 | const makeFormDir = (name: string): string => |
| 266 | dirRel ? `${dirRel}/${name}${FORM_DIR_SUFFIX}` : `${name}${FORM_DIR_SUFFIX}` |
| 267 | // Resolve a non-colliding `<Name>.base` folder under the directory. |
| 268 | let formDirRel = makeFormDir(baseName) |
| 269 | let n = 2 |
no outgoing calls
no test coverage detected