Home
last modified time | relevance | path

Searched refs:realHasInstance (Results 1 – 11 of 11) sorted by relevance

/third_party/node/deps/npm/node_modules/readable-stream/lib/
D_stream_writable.js212 var realHasInstance; variable
215 realHasInstance = Function.prototype[Symbol.hasInstance];
218 if (realHasInstance.call(this, object)) return true;
224 realHasInstance = function realHasInstance(object) { function
240 if (!isDuplex && !realHasInstance.call(Writable, this)) return new Writable(options);
/third_party/node/deps/npm/node_modules/through2/node_modules/readable-stream/lib/
D_stream_writable.js233 var realHasInstance; variable
235 realHasInstance = Function.prototype[Symbol.hasInstance];
238 if (realHasInstance.call(this, object)) return true;
245 realHasInstance = function (object) { function
260 if (!realHasInstance.call(Writable, this) && !(this instanceof Duplex)) {
/third_party/node/deps/npm/node_modules/fs-write-stream-atomic/node_modules/readable-stream/lib/
D_stream_writable.js233 var realHasInstance; variable
235 realHasInstance = Function.prototype[Symbol.hasInstance];
238 if (realHasInstance.call(this, object)) return true;
245 realHasInstance = function (object) { function
260 if (!realHasInstance.call(Writable, this) && !(this instanceof Duplex)) {
/third_party/node/deps/npm/node_modules/flush-write-stream/node_modules/readable-stream/lib/
D_stream_writable.js233 var realHasInstance; variable
235 realHasInstance = Function.prototype[Symbol.hasInstance];
238 if (realHasInstance.call(this, object)) return true;
245 realHasInstance = function (object) { function
260 if (!realHasInstance.call(Writable, this) && !(this instanceof Duplex)) {
/third_party/node/deps/npm/node_modules/from2/node_modules/readable-stream/lib/
D_stream_writable.js233 var realHasInstance; variable
235 realHasInstance = Function.prototype[Symbol.hasInstance];
238 if (realHasInstance.call(this, object)) return true;
245 realHasInstance = function (object) { function
260 if (!realHasInstance.call(Writable, this) && !(this instanceof Duplex)) {
/third_party/node/deps/npm/node_modules/parallel-transform/node_modules/readable-stream/lib/
D_stream_writable.js233 var realHasInstance; variable
235 realHasInstance = Function.prototype[Symbol.hasInstance];
238 if (realHasInstance.call(this, object)) return true;
245 realHasInstance = function (object) { function
260 if (!realHasInstance.call(Writable, this) && !(this instanceof Duplex)) {
/third_party/node/deps/npm/node_modules/concat-stream/node_modules/readable-stream/lib/
D_stream_writable.js233 var realHasInstance; variable
235 realHasInstance = Function.prototype[Symbol.hasInstance];
238 if (realHasInstance.call(this, object)) return true;
245 realHasInstance = function (object) { function
260 if (!realHasInstance.call(Writable, this) && !(this instanceof Duplex)) {
/third_party/node/deps/npm/node_modules/duplexify/node_modules/readable-stream/lib/
D_stream_writable.js233 var realHasInstance; variable
235 realHasInstance = Function.prototype[Symbol.hasInstance];
238 if (realHasInstance.call(this, object)) return true;
245 realHasInstance = function (object) { function
260 if (!realHasInstance.call(Writable, this) && !(this instanceof Duplex)) {
/third_party/node/deps/npm/node_modules/stream-iterate/node_modules/readable-stream/lib/
D_stream_writable.js233 var realHasInstance; variable
235 realHasInstance = Function.prototype[Symbol.hasInstance];
238 if (realHasInstance.call(this, object)) return true;
245 realHasInstance = function (object) { function
260 if (!realHasInstance.call(Writable, this) && !(this instanceof Duplex)) {
/third_party/node/deps/npm/node_modules/are-we-there-yet/node_modules/readable-stream/lib/
D_stream_writable.js233 var realHasInstance; variable
235 realHasInstance = Function.prototype[Symbol.hasInstance];
238 if (realHasInstance.call(this, object)) return true;
245 realHasInstance = function (object) { function
260 if (!realHasInstance.call(Writable, this) && !(this instanceof Duplex)) {
/third_party/node/lib/internal/streams/
Dwritable.js199 let realHasInstance; variable
201 realHasInstance = FunctionPrototype[SymbolHasInstance];
204 if (realHasInstance.call(this, object))
213 realHasInstance = function(object) { function
231 if (!isDuplex && !realHasInstance.call(Writable, this))