zlib.deflateRaw()

zlib.deflateRaw(buf[, options], callback)

worker.isConnected()

worker.isConnected() This function returns true if the worker is connected to its master via its IPC channel, false otherwise. A worker is connected to its master after it's been created. It is disconnected after the 'disconnect' event is emitted.

util.isString()

util.isString(object) Stability: 0 - Deprecated Returns true if the given "object" is a String. Otherwise, returns false. const util = require('util'); util.isString('') // true util.isString('foo') // true util.isString(String('foo')) // true util.isString(5) // false

process.hrtime()

process.hrtime() Returns the current high-resolution real time in a [seconds, nanoseconds] tuple Array. It is relative to an arbitrary time in the past. It is not related to the time of day and therefore not subject to clock drift. The primary use is for measuring performance between intervals. You may pass in the result of a previous call to process.hrtime() to get a diff reading, useful for benchmarks and measuring intervals: var time = process.hrtime(); // [ 1800216, 25 ] setTimeout(() =&

clearImmediate()

clearImmediate(immediateObject) Stops an immediateObject, as created by setImmediate, from triggering.

pipe event (stream.Writable)

Stability: 2 - Stable A stream is an abstract interface implemented by various objects in Node.js. For example a request to an HTTP server is a stream, as is process.stdout. Streams are readable, writable, or both. All streams are instances of EventEmitter. You can load the Stream base classes by doing require('stream'). There are base classes provided for Readable streams, Writable streams, Duplex streams, and Transform streams. This document is split up into 3 sections: The first section e

tlsSocket.remoteFamily

tlsSocket.remoteFamily The string representation of the remote IP family. 'IPv4' or 'IPv6'.

.listen()

server.listen(handle[, callback])

.close()

server.close([callback]) See http.close() for details.

fs.fchownSync()

fs.fchownSync(fd, uid, gid) Synchronous fchown(2). Returns undefined.