Support paths as Buffers

This commit is contained in:
Kevin Sawicki 2016-07-25 11:10:36 -07:00
parent 30fbe92970
commit 8eca019157
2 changed files with 9 additions and 0 deletions

View file

@ -37,6 +37,10 @@
return [false]
}
if (Buffer.isBuffer(p)) {
p = p.toString()
}
if (typeof p !== 'string') {
return [false]
}