You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 11, 2021. It is now read-only.
All three Writer examples on the readme invoke end on the return of ``write(). But .write()` returns booleans, not objects with `.end` methods.
fstream
.Writer({ path: "path/to/file"
, mode: 0755
, size: 6
})
.write("hello\n")
.end() //=> TypeError: fstream.Writer(...).write(...).end is not a function