(p: string)
| 39 | export const FORM_PAGES_DIR = 'pages' |
| 40 | |
| 41 | const toPosixPath = (p: string): string => p.replace(/\\/g, '/') |
| 42 | const lastSegment = (p: string): string => { |
| 43 | const s = toPosixPath(p) |
| 44 | return s.slice(s.lastIndexOf('/') + 1) |
no outgoing calls
no test coverage detected