gwisp2
gwisp2
Hello! Thanks for the great library! I suggest adding ability to get the path of JsonVariant in a document, or at least to check that two JsonVariant point to the...
Automatic installation with set NEXTCLOUD_ADMIN_USER is not working properly. Failure example: [repository](https://github.com/gwisp2/NextcloudBugEnvironment). NEXTCLOUD_ADMIN_USER=gwisp POSTGRES_USER=nextcloud_user In logs it can be seen that database tables are created by _nextcloud_user_ and when handling...
A call of pure functions generates the same bytecode as a call of view functions, pureness is not actually enforced in runtime. A person who solves Ethernaut should learn about...
## Context Some functions (mostly operator) are not included in [libgmp.def](https://github.com/ShiftMediaProject/gmp/blob/master/SMP/libgmp.def) and therefore are not exported by a dynamic library for Windows. ## Expected Behavior The code below should compile...
### Code [codesandbox](https://codesandbox.io/s/mystifying-chandrasekhar-wj624d?file=/src/index.ts) ```typescript import { record, string } from "superstruct"; const exampleStruct = record(string(), string()); console.log(exampleStruct.create(Object.freeze({ a: "b" }))); ``` ### Expected result ```javascript { "a": "b" } ```...