function tmpPathSync(): string
Synchronously retrieves the real path of the system's temporary directory.
string
The real path of the temporary directory.
// Get the real path of the system's temporary directory
const path = tmpPathSync();
console.log('Temporary directory path:', path);