2022-12-29 10:17:47 +01:00

9 lines
180 B
TypeScript

const isWin = process.platform === 'win32';
export default function touch(filePath: string) {
if (isWin) {
return `echo. > ${filePath}`;
}
return `touch ${filePath}`;
}