Linn Dahlgren
Linn Dahlgren
Also made Gruntfile use the FS module to look for the correct placement for jsdoc-thing. It failed on my system using NPM 4.
`return data[name] === 'undefined' ? null : data[name];` should be `return data[name] === undefined ? null : data[name];` Preparing a PR. Just creating the issue to have something to refer...
**Is your feature request related to a problem? Please describe.** Say you want to create an argument type, which contains spaces, such as `2h 43m` or anything else that contains...
**Is your feature request related to a problem? Please describe.** Commando is pretty powerful with its prompting for valid arguments and stuff, but there's a limitation to simply using a...
The previous PR to resolve this issue (#124) ended up duplicating the types to the umd module. Moving the source-of-truth to the `./umd/index.d.ts` file enables the `./index.d.ts` file to import...
### Just want to get the color back in your client? Go to the bottom of this issue, I put a workaround there. --- EDIT NOTICE: This was originally phrased...
protobuf.js version: latest master I'm looking into reading a uint32 value directly from a without instantiating a reader, and I was looking at this official implementation for reference, and [this...
Using two different systems to store information about the player, as we discussed in the PR, is not that great. But it got me thinking about storing the PWIPlayerObjects themselves...