Categorygithub.com/Equationzhao/pathbeautify
repositorypackage
0.0.7
Repository: https://github.com/equationzhao/pathbeautify.git
Documentation: pkg.go.dev

# Packages

No description provided by the author
No description provided by the author

# README

path beautify

Usage

package main

import (
	"fmt"

	"github.com/Equationzhao/pathbeautify"
)

func main() {
	fmt.Println(pathbeautify.Beautify("~/Downloads"))
	// output: /home/equationzhao/Downloads

	fmt.Println(pathbeautify.Beautify("../.../..../.."))
	// output: ../../../../../../..
}