(path, commonDir)
| 35 | } |
| 36 | |
| 37 | export const getVirtualPathForDynamicRequirePath = (path, commonDir) => |
| 38 | `/${normalizePathSlashes(relative(commonDir, path))}`; |
| 39 | |
| 40 | export function capitalize(name) { |
| 41 | return name[0].toUpperCase() + name.slice(1); |
no test coverage detected