parsePropertyPathprivatestatic
Parse a path and return an object which holds the parsed properties.
For example a path like "content.isEnabled:enabled:disabled" will return the following object:
1 2 3 4 5 6 | { path: "content.isEnabled" , className: "enabled" , falsyClassName: "disabled" , classNames: ":enabled:disabled" } |
Please login to continue.