Files
go-receipt-tracker/utils/utils.go
2025-02-03 17:49:29 -05:00

11 lines
149 B
Go

package utils
import (
"encoding/json"
)
func IsJSON(str string) bool {
var js json.RawMessage
return json.Unmarshal([]byte(str), &js) == nil
}