Andrew Armenia
Results
1
issues of
Andrew Armenia
On Linux: ``` mkdir testdir touch testdir/a\\b ``` ``` var filewalker = require('filewalker'); filewalker("testdir") .on("file", function(p, s) { console.log(p); }) .walk(); ``` output is `a/b` instead of the expected `a\b`.