Categorygithub.com/masterZSH/helper
repositorypackage
0.0.0-20240726061839-0abddf470cc4
Repository: https://github.com/masterzsh/helper.git
Documentation: pkg.go.dev

# Packages

No description provided by the author

# README

helper

import "github.com/masterZSH/helper"
//  NilSliceToEmptySlice
helper.NilSliceToEmptySlice(yournilslice)

// slice to str  faster than string([]byte{})
helper.SliceByteToString([]byte[1,2,3])

//  str to slice  better that []byte("123")
helper.StringToSliceByte("123")


// is email 
helper.IsEmail("[email protected]")

// GetPhoneCipherText "13112312312" => "131****1234"
helper.GetPhoneCipherText("13112312312")