James Wyatt Cready-Pyle

Results 79 comments of James Wyatt Cready-Pyle

Yes, it is possible. Make sure that when you inspect the top-level `` (the one you initialize `new Slick.Grid()` with) it has a set width and height. Also make sure...

I agree that you should be using @6pac's fork. It's much more up-to-date. The simple solution I think would be to keep an array of every `Slick.Grid` instance you create....

https://github.com/zalmoxisus/redux-devtools-extension/blob/master/docs/Troubleshooting.md#access-file-url-file

The text encoding/decoding is entirely up to your JS runtime. You can run this in your browser or node and see the same result. ```js const input = 'test'; //...

Oh, duh. It's the [BOM](https://www.w3.org/International/questions/qa-byte-order-mark). >The name BYTE ORDER MARK is an alias for the original character name ZERO WIDTH NO-BREAK SPACE (ZWNBSP). With the introduction of U+2060 WORD JOINER,...

I can't seem to find any information about whether or not the BOM should be ignored or not in protobuf strings. They're [definitely ignored](https://github.com/protocolbuffers/protobuf/pull/601) when `protoc` is reading a proto...

The `[MESSAGE_TYPE]` field is a non-enumerable property that is added to the object as a [helpful "branding"](https://github.com/timostamm/protobuf-ts/pull/147) that can be used for reflection purposes, but is not actually a required...

@timostamm I wonder if we could avoid the whole mess of extra properties on the objects by using a `WeakMap` to store the message type (and possibly the unknown fields)....

@timostamm I think with my latest commit that the `PartialMessage` type should work correctly now. I hope you're okay with the updated "unset" oneof group type: `{ kind: undefined; value?:...

I realize this would require a major version bump, but I'm curious if oneofs might be better (or at least easier to operate on in the world of TypeScript) represented...