mirror of
https://github.com/pnpm/pnpm.git
synced 2026-05-15 03:56:15 -04:00
8 lines
295 B
TypeScript
8 lines
295 B
TypeScript
export function refIsLocalTarball (ref: string): boolean {
|
|
return ref.startsWith('file:') && (ref.endsWith('.tgz') || ref.endsWith('.tar.gz') || ref.endsWith('.tar'))
|
|
}
|
|
|
|
export function refIsLocalDirectory (ref: string): boolean {
|
|
return ref.startsWith('file:') && !refIsLocalTarball(ref)
|
|
}
|