mknj
mknj
It would be really nice to have an npm package that does not rely on gyp (python+c compiler). This would solve many installation problems where the correct python or C-compiler...
null is treated as a non existing member. This is not correct. i.e. ```js JSON.parse('{ "something": [ {"x":1},{"x":"a"},{"x":null} ]}') ``` returns ```js { something: [ { x: 1 }, {...
After ```bash npm i [email protected] cd mock npm i cd .. npm i npm run test ``` i get ``` ... Validating against 7-petstore.yaml ("Test API 7 - Petstore", version:...
```js sql` SELECT 1, 2,3 `; ``` is converted into this broken code ```js sql` SELECT 1, 2, 3 `; ``` I have to remove the first empty line to...
## Problem Tables with double width unicode characters are not correctly aligned (see screenshot). ## observed output  ### sidenote The vi Editor in the same terminal window can handles...
# summary I would expect that a deep.include of an array of objects compares the contained objects via deep.include and not via deep.equal. aka. `expect([{x:1,y:2}]).deep.include([{x:1}])` behaves like `expect({x:1,y:2}).deep.include({x:1})` # version...
#### Bug Report Checklist - [X] ALL Specs Have you provided a full/minimal spec to reproduce the issue? - [X] All Specs Have you validated the input using an OpenAPI...
this is related to #17 It would be nice to be able to add a simple timestamp overlay to the video (and pictures?). Optionally it would be nice to be...
calling "docker run" multiple times will create many stopped containers. using "docker run --rm" resolves this issue by deleting the temporary container after executing it.