(file: string)
| 137 | } |
| 138 | |
| 139 | export function name(file: string) { |
| 140 | if (process.platform === "win32") return path.win32.parse(FSUtil.windowsPath(file)).name.toLowerCase() |
| 141 | return path.basename(file).toLowerCase() |
| 142 | } |
| 143 | |
| 144 | export function login(file: string) { |
| 145 | return meta(file)?.login === true |
no outgoing calls
no test coverage detected