- From: Adam Rice <notifications@github.com>
- Date: Fri, 05 Oct 2018 14:33:01 +0000 (UTC)
- To: whatwg/streams <streams@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Friday, 5 October 2018 14:33:25 UTC
Here's what I get when I do `console.log(Object.getOwnPropertyNames(global).join(', '));` from the ReadableStream constructor: ```Object, Function, Array, Number, parseFloat, parseInt, Infinity, NaN, undefined, Boolean, String, Symbol, Date, Promise, RegExp, Error, EvalError, RangeError, ReferenceError, SyntaxError, TypeError, URIError, JSON, Math, console, Intl, ArrayBuffer, Uint8Array, Int8Array, Uint16Array, Int16Array, Uint32Array, Int32Array, Float32Array, Float64Array, Uint8ClampedArray, DataView, Map, Set, WeakMap, WeakSet, Proxy, Reflect, decodeURI, decodeURIComponent, encodeURI, encodeURIComponent, escape, unescape, eval, isFinite, isNaN, gc, WebAssembly, global, process, GLOBAL, root, Buffer, clearImmediate, clearInterval, clearTimeout, setImmediate, setInterval, setTimeout``` It appears that all of those symbols are supplied by NodeJS. Doing the same command with `self` instead of `global` inside the body of a test gives a much longer list. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/whatwg/streams/commit/2ed62aa279a6c9181cf8424155edce89b6afb897#commitcomment-30788530
Received on Friday, 5 October 2018 14:33:25 UTC