buffer.readUIntBE()

buf.readUIntBE(offset, byteLength[, noAssert])

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

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.

writable._writev()

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

clearInterval()

clearInterval(intervalObject) Stops an intervalObject, as created by setInterval, from triggering.

zlib.deflateRaw()

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

buffer.writeUIntBE()

buf.writeUIntBE(value, offset, byteLength[, noAssert])

writable._write()

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

url.format()

url.format(urlObj) Take a parsed URL object, and return a formatted URL string. Here's how the formatting process works: href will be ignored. path will be ignored. protocol is treated the same with or without the trailing : (colon).The protocols http, https, ftp, gopher, file will be postfixed with :// (colon-slash-slash) as long as host/hostname are present. All other protocols mailto, xmpp, aim, sftp, foo, etc will be postfixed with : (colon). slashes set to true if the protocol requi

open event (fs.WriteStream)

Event: 'open' fd <Number> Integer file descriptor used by the WriteStream. Emitted when the WriteStream's file is opened.