Is the value numeric?

assert "1.234".to_json_value.is_numeric
assert "1234".to_json_value.is_numeric
assert not "\"str\"".to_json_value.is_numeric
assert not "1.2.3.4".to_json_value.is_numeric

Property definitions

json $ JsonValue :: is_numeric
	# Is the value numeric?
	#
	#     assert "1.234".to_json_value.is_numeric
	#     assert "1234".to_json_value.is_numeric
	#     assert not "\"str\"".to_json_value.is_numeric
	#     assert not "1.2.3.4".to_json_value.is_numeric
	fun is_numeric: Bool do return is_int or is_float
lib/json/dynamic.nit:120,2--126,50