James Wyatt Cready-Pyle

Results 36 issues of James Wyatt Cready-Pyle

Collapsed nested objects/arrays in Chrome's devtools show the preview of the value not just `Object` or `Array`, upon expansion the preview goes away for objects, but not for arrays. ![react-inspector](https://user-images.githubusercontent.com/358876/66863604-63fe7f00-ef61-11e9-94b9-4dd4b3e7696c.gif)...

- DOMNodePreview - ObjectPreview - TreeView - TreeNode

Are there plans to add byte-range support to this? Similar to the [send](/pillarjs/send) module that express uses?

enhancement
help wanted

Fixes #56. The `standard.lintText()` function is [needlessly asynchronous](https://github.com/Flet/standard-engine/blob/9a25255b308c865ea2ada4598bb2be4f6dac0676/index.js#L58-L70) (note the `nextTick()` function), this simply applies the actual operation in a synchronous way.

The `ServerStreamingCall`'s `responses` is an `RpcOutputStream` which has an `AsyncIterator`. If the consumer does not synchronously invoke the `AsyncIterator` data can be dropped. ```ts let serverStreaming = service.serverStreamingMethod(foo); await (new...

When deserializing binary protobuf-ts tries to be fast by only creating "views" over the underlying `ArrayBuffer`. This isn't a concern except for when you have a `bytes` field. https://github.com/timostamm/protobuf-ts/blob/51e6838e10fe102fd954eb79777db73e0ca0ad4f/packages/runtime/src/binary-reader.ts#L238 Let's...