We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For initial compatibility with Deno, the following incompatibilities with Node.js API have to be solved:
fs.writeFile(_, body, _)
ReadableStream
body
fd.write(chunk, { length, position }
filehandle[Symbol.asyncDispose]
Request
integrity
fetch
ReadableStream.from()
fd.read()
fs.fileAppend(_, body, _)
fd.readableWebStream()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
For initial compatibility with Deno, the following incompatibilities with Node.js API have to be solved:
fs.writeFile(_, body, _)
doesn't acceptReadableStream
asbody
fd.write(chunk, { length, position }
signature is not supportedfilehandle[Symbol.asyncDispose]
is not definedRequest
instance properties,integrity
in particular, are ignored by constructor andfetch
(which is security issue tbh)ReadableStream.from()
is not implemented (tbf it's too fresh)fd.read()
signature is... I don't get it rnfs.fileAppend(_, body, _)
doesn't acceptReadableStream
asbody
eitherfd.readableWebStream()
is not supportedThe text was updated successfully, but these errors were encountered: