IsNull returns true if the YAML node is a null.
(node *yaml.Node)
| 70 | |
| 71 | // IsNull returns true if the YAML node is a null. |
| 72 | func (YAMLHelper) IsNull(node *yaml.Node) bool { |
| 73 | return isTypeTag(node, yamlNull) |
| 74 | } |
| 75 | |
| 76 | // IsNumber returns true if the YAML node is a number. |
| 77 | func (YAMLHelper) IsNumber(node *yaml.Node) bool { |