MCPcopy Create free account
hub / github.com/TanStack/cli / isLocalPath

Function isLocalPath

packages/cli/src/cli.ts:58–65  ·  view source on GitHub ↗
(value: string)

Source from the content-addressed store, hash-verified

56const VERSION = packageJson.version
57
58function isLocalPath(value: string) {
59 return (
60 value.startsWith('./') ||
61 value.startsWith('../') ||
62 value.startsWith('/') ||
63 /^[a-zA-Z]:[\\/]/.test(value)
64 )
65}
66
67function isRemoteUrl(value: string) {
68 return /^https?:\/\//i.test(value) || /^file:\/\//i.test(value)

Callers 1

Calls 1

testMethod · 0.80

Tested by

no test coverage detected