Vaibhav Mehta
Vaibhav Mehta
Popup notifications on the page incase if devtools window is not active. This will help warn users to debug.
I was thinking it would be great if you add support for monitoring disk usage. If it hits < N GB, it will raise alerts.
For example, consider the following ``` var a = { hello: [1, 2, 3], world: "true" } ``` And I've the following validation object... ``` var schema = { type:...
**Basic Object** ``` const sampleObj = { randomnumber: 2, arr: [ 1, 2, "hello" ] }; console.log(JSON.stringify(GenerateSchema.json(sampleObj), null, 2)); ``` Above returns wrong validation for the array, I have 3...