package serial

import (
	"fmt"
)

func PointerToString(value interface{}) string {
	return fmt.Sprint(value)
}