function touch()

in src/node/main.ts [263:268]


function touch(file: string) {
	let d = new Date();
	fs.utimes(file, d, d, () => {
		// Do nothing. Ignore
	});
}