Borislav Iordanov
Borislav Iordanov
I'm trying to use your vue-eagle-modal module in vuepress. I can build and use it in development mode with 'npm run dev', but when I try to build "production" version...
Is there any chance to provide a Scaladoc style documentation for this library? Or anything that can server as a reference to its API. For example, how does one create...
I integrated by copy & pasting from the sample code, I'm loading a file from the file system and it's a webpack environment. Source maps show when the same code...
``` public Json delAt(String property) { Json el = object.remove(property); removeParent(el, this); return this; } ``` when there is no value for the property being deleted, the `removeParent` call leads...
The current default implementation of `Json.toString` will output an ellipsis (`...`) when the traversal is about to output the same object (same Java reference). This is to avoid circularity issues...
Parsing currently assumes we have the full document and it's a one short operation. But for processing streams of Json documents a user of mjson needs to do extra work...
For a predictable standard string serialization, we should use RFC 7159
The interface will of course fatten a bit, but that's also the point of having a single class. Instead of writing object.at(propertyname).asString() we could write object.asString(propertyname) or for arrays: object.asString(10)...
This seems like a new effort, but important for REST services to have something like this: http://jsonpatch.com/, so we could support it.
This should be in a related to mJson project (e.g. mJsonPlus that could contains all extra goodies while keeping mJson itself small). The idea is to create Java annotations that...