Kelly Banman
Kelly Banman
I think things like this could be very useful, but I can't imagine supporting each and every desired generator in the core package. I'd like to work with whomever is...
Finally got around to this again, and wrote a [test case](https://github.com/kbanman/crunchy-proxy/tree/tests) for this. The test surfaced another edge case that I have addressed with e1cd86e: Sometimes the message boundary not...
That solution seems cleaner and passes my tests, so š
I'm running into this error as well. Would it be possible to get around this by using a different unzip library?
This has been open for 4 years.. What's needed to get this merged?
The examples directory is not meant to be viewed in a browser. They are for source examination only. :-1:
Here's a first attempt: ``` type SetValuesDocument = { [path: string]: Operand; }; type SetChange = [string | KeyPath, Operand]; type Operand = KeyPath | LiteralValue | FunctionOperand; interface FunctionOperand...
There is still potential for ambiguity between `KeyPath` and a literal nested list of strings. I haven't come up with a solution for that
Update: I found a workaround: ```javascript const DocumentClient = require('aws-sdk/clients/dynamodb').DocumentClient; const { createSet } = new DocumentClient(); /// ... { colours: createSet(['Red', 'Blue']) } ``` Would be nice to have...
DynamoDB allows atomic operations against sets. As far as I'm aware, adding or removing items from a list requires something like `list = list + newElement`. Maybe I'm being paranoid,...