``` $ node -v v12.18.4 ``` ### What steps will reproduce the bug? ``` $ cd /tmp $ node -e "console.log(fs.realpathSync(''))" /tmp ``` ### What is the expected behavior? ``` $ node -e "fs.realpath.native('', (e) => void console.log(e))" [Error: ENOENT: no such file or directory, realpath ''] { errno: -2, code: 'ENOENT', syscall: 'realpath', path: '' } ```