The current version of this project is licensed under LGPLv3
PaxJson.pas tries to provide a 3rd version of the json format specifications (http://es5.github.io/#x15.9.1.15)
This function attempts to translate a string into an instance of a class. Use standard fpjson as a string parser. The parser function uses a register for classes that can be instantiated autonomously.
This function translates an object into its string representation.
Register a new type handler.
procedure RegisterJSONClass(aClass: TClass; aFactory: TFactory = nil); Register a class for the parser method The factory function provides a help to create instance for particular class, such as Collection and Generic container (eg TFPGObjectList subclasses)
Find a class by name in the registry.
Turn a string into a camel case. eg "CamelCase"
Translate a string in Pascal case. eg "PascalCase".
Translate a string into "selector case". css libraries like Bootstrap.css use "-" to separate individual words. eg "selector-case".