(a: string, b: string)
| 3 | export { pathKey as directoryKey, type PathKey as DirectoryKey } from "@/utils/path-key" |
| 4 | |
| 5 | export const cmp = (a: string, b: string) => (a < b ? -1 : a > b ? 1 : 0) |
| 6 | |
| 7 | function isAgent(input: unknown): input is Agent { |
| 8 | if (!input || typeof input !== "object") return false |
no outgoing calls
no test coverage detected