Does key matches a collection?

Property definitions

json $ JsonStore :: has_collection
	# Does `key` matches a collection?
	fun has_collection(key: String): Bool do
		var path = ("{store_dir}/{key}".simplify_path).to_path
		return path.exists and path.stat.is_dir
	end
lib/json/store.nit:174,2--178,4