mirror of
https://github.com/cupcakearmy/cryptgeon.git
synced 2025-04-04 17:07:27 +00:00
28 lines
787 B
TypeScript
28 lines
787 B
TypeScript
import { InvalidArgumentError, InvalidOptionArgumentError } from '@commander-js/extra-typings'
|
|
import { accessSync, constants } from 'node:fs'
|
|
import { resolve } from 'node:path'
|
|
|
|
export function parseFile(value: string, before: string[] = []) {
|
|
try {
|
|
const file = resolve(value)
|
|
accessSync(file, constants.R_OK)
|
|
return [...before, file]
|
|
} catch {
|
|
throw new InvalidArgumentError('cannot access file')
|
|
}
|
|
}
|
|
|
|
export function parseURL(value: string, _: URL): URL {
|
|
try {
|
|
return new URL(value)
|
|
} catch {
|
|
throw new InvalidArgumentError('is not a valid url')
|
|
}
|
|
}
|
|
|
|
export function parseNumber(value: string, _: number): number {
|
|
const n = Number.parseInt(value, 10)
|
|
if (Number.isNaN(n)) throw new InvalidOptionArgumentError('invalid number')
|
|
return n
|
|
}
|