Minify blocks of JSON-like content into valid JSON by removing all white-space and C/C++ style comments. JSON parsers (like JavaScript's JSON.parse() parser) generally don't consider JSON with comments to be valid and parseable. So, the intended usage is of this project is to minify development-friendly JSON (i.e with comments) to valid JSON before parsing, such as: Now you can maintain developmen

