🌳
pt0/deployF/libF/gitF/getManualRangeF.mts
3const manualRangeRe = /^(.+?)\.\.(.+?)$/
5export const getManualRange = (): {from: string, to: string} | undefined => {
6 const match = getProcArgv()[3]?.match(manualRangeRe)
7 return match ? {from: match[1], to: match[2]} : undefined
8}