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
fs.write()
From the docs:
fs.write(fd, buffer, offset, length[, position], callback) fs.write(fd, data[, position[, encoding]], callback)
By default the method signature is this:
function (fd, buffer, offset, length, position, callback)
The parameters can change depending on the input:
if (buffer instanceof Buffer) { // if no position is passed then assume null if (typeof position === 'function') { callback = position; position = null; }
The tls.connect() method also has two different signatures.
tls.connect()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
From the docs:
By default the method signature is this:
The parameters can change depending on the input:
The
tls.connect()
method also has two different signatures.The text was updated successfully, but these errors were encountered: