Brenton Simpson

Results 135 comments of Brenton Simpson

I can open a PR if you like. I hesitated because I didn't know if changing `isGetter` to be more complicated would be discouraged for perf reasons.

@jordangarcia I think React has one version for npm, but has a const (`NODE_ENV === "production"`) that determines whether or not the tests run. They presume that if you care...

I'm using Steam Link. It's possible that the Quest got confused about where my boundary was, so I don't have strong feelings on that. The eye jitter did make it...

I was able to use this controller to successfully play Rock Band 2 on Wii last night, so the controller works. I used the main buttons at the top of...

In an attempt to be more DRY using named args and strong types (until something like your proposal lands), I tried this: ``` ts interface ExampleArgs { firstArg: string; otherArg:...

Thanks. I had to separate the exports from the declarations to make that work: ``` typescript interface ExampleArgs { firstArg: string; otherArg: number; } class Example { constructor(kwargs:ExampleArgs) { return...

@RyanCavanaugh, you're proposing that ``` typescript constructor(public { name1 = value1, name2 = value2 }: { name1: string, name2: string }) {} ``` would desugar to ``` javascript constructor({ name1...

@andraaspar I'd imagine you'd run into issues if there were methods on `Person`. ```typescript const model = { firstName: 'Andras', } class Person { firstName: string; doAThing() { } }...

You mean, like, [right there](https://yarnpkg.com/cli/set/version)? I don't know why you're trying to take a thread about updating the docs to help users stay on the current version on your sidequest...