Is this value null?

assert "null".to_json_value.is_null
assert not "123".to_json_value.is_null

Property definitions

json $ JsonValue :: is_null
	# Is this value null?
	#
	#     assert "null".to_json_value.is_null
	#     assert not "123".to_json_value.is_null
	fun is_null: Bool do return value == null
lib/json/dynamic.nit:72,2--76,42