Josh Yudaken
Josh Yudaken
At the moment `process.exit(1)` called elsewhere results in jasmine exiting with `0`. This corrects that.
Hi there, Firstly thanks for your work here! This project is _very_ close to what I've been looking for as I try build out an editor for some of my...
The current logic for getFlushTimeout currently is broken. There are cases where node.js `setTimeout` will call the function a couple milliseconds before when is expected. In that case the math...
For one of our use cases I want to pass the rdb file via stdin
Enum types in TypeScript are not actually just the enum values. The types land up being restricted to `string` internally rather than the actual values. This makes the types a...
Is there a reason `type` is named `type_` in the headers/spec? It took me a while of digging for it, and notice it isn't mentioned at all in the documentation.
Right now we use a JavaScript based implementation of murmurhash in order to get browser support. When running in a native environment we should use a faster native version of...
There is some strange state introduced in `jsonPath` in #90 where the function only works if data is serialized and deserialized. ### Expected behavior `return jsonpathQuery(data, path);` as the body...
Creating a SqrlNode from an input is not possible, you have to create an additional feature. ### Expected behavior ``` LET Ip := inputNode("Ip"); ``` Should provide you with a...
Improve the cli stream command with csv and json support ### Expected behavior Suppose you have a file, input.csv: ``` Ip,Username 1.2.3.4,josh 1.2.3.5,josh 1.2.3.6,josh 8.8.8.8,dave 8.8.8.8,greg 9.6.7.8,dave ``` ... and...