fs.stat('symlink').isSymbolicLink() returns false · Issue #153 · nodejs/node-v0.x-archive

# touch myfile # ln -s myfile mylink # ls -l total 0 -rw-r--r-- 1 root root 0 2010-05-15 10:40 myfile lrwxrwxrwx 1 root root 6 2010-05-15 10:40 mylink -> myfile # node-repl node> require('fs').stat...