Checks if the string values of all nodes are empty. @param nodes node list @return result of check
(final GNodeList nodes)
| 304 | * @return result of check |
| 305 | */ |
| 306 | static boolean empty(final GNodeList nodes) { |
| 307 | return ((Checks<GNode>) node -> Token.normalize(node.string()).length == 0).all(nodes); |
| 308 | } |
| 309 | |
| 310 | /** |
| 311 | * Returns the children of the specified type. |