`equalStringify` and `equalParse`
Feature Request
I'd like to use equal function for parsing/stringify json file.
It is similar to assertParse/ assertStringify.
equalStringify()
typia.json.stringify() and similar functions typia.json.assertStringify() still do not serialize superfluous properties.
Therefore, your purpose is already accomplished.
equalParse()
You can accomplish it by combining typia.json.assertParse() and typia.misc.prune() or typia.misc.clone() functions.
By the way, to accomplish this mission, it would better to change the typia.json.assertParse() function do performing the prune() or clone() process internally. This strategy seems better than making a new function, and even more suitable as a specification for assertParse() function.
Nice! I got it ! thanks