Sha256: e5d0b12274436d2925f6bac46642fe359aaaa184582d9a39477ce6b7438d3589
Contents?: true
Size: 629 Bytes
Versions: 62
Compression:
Stored size: 629 Bytes
Contents
'use strict'; var isStream = module.exports = function (stream) { return stream !== null && typeof stream === 'object' && typeof stream.pipe === 'function'; }; isStream.writable = function (stream) { return isStream(stream) && stream.writable !== false && typeof stream._write == 'function' && typeof stream._writableState == 'object'; }; isStream.readable = function (stream) { return isStream(stream) && stream.readable !== false && typeof stream._read == 'function' && typeof stream._readableState == 'object'; }; isStream.duplex = function (stream) { return isStream.writable(stream) && isStream.readable(stream); };
Version data entries
62 entries across 62 versions & 1 rubygems