webpack / memory-fs

[DEPRECATED use memfs instead] A simple in-memory filesystem. Holds data in a javascript object.
MIT License
881 stars 88 forks source link

readFile does not seem to accept options object #55

Open turnerhayes opened 6 years ago

turnerhayes commented 6 years ago

When I run fs.readFile(somePath, { encoding: "utf8" }, (err, content) => {}), which (I think) works with the native Node fs module, it throws an error TypeError: Unknown encoding: [object Object]. It seems to work if I just pass "utf8", rather than an object.

Viijay-Kr commented 6 years ago

@turnerhayes This issue should have existed until this #39 was merged. Since its was merged long back I think this issue is not valid anymore.Thanks!

mpetrovich commented 5 years ago

I can confirm that this issue still exists.

This doesn't work:

fs.readFile(filepath, { encoding: 'utf8' })

This does work:

fs.readFile(filepath, 'utf8')