phml.utilities.validate

utilities.validate

A collection of utilities centered around validating nodes, types, values on nodes, and any other condition you want to apply to a node or ast.

 1"""utilities.validate
 2
 3A collection of utilities centered around validating nodes, types,
 4values on nodes, and any other condition you want to apply to a node
 5or ast.
 6"""
 7
 8from .check import *
 9from .validate import *
10from .check import *
11
12# __all__ = [
13#     "validate",
14#     "parent",
15#     "literal",
16#     "generated",
17#     "has_property",
18#     "is_heading",
19#     "is_css_link",
20#     "is_css_style",
21#     "is_javascript",
22#     "is_element",
23#     "is_event_handler",
24#     "test",
25#     "Test"
26# ]