Remove first occurence of /.

Property definitions

nitcorn :: vararg_routes $ Route :: standardize_path
	# Remove first occurence of `/`.
	private fun standardize_path(path: String): String do
		if not path.is_empty and path.first == '/' then
			return path.substring(1, path.length)
		end
		return path
	end
lib/nitcorn/vararg_routes.nit:203,2--209,4