Skip to content

Instantly share code, notes, and snippets.

@benlemasurier
Created May 12, 2014 02:12
Show Gist options
  • Save benlemasurier/77dbdeab98ed1be92546 to your computer and use it in GitHub Desktop.
Save benlemasurier/77dbdeab98ed1be92546 to your computer and use it in GitHub Desktop.
// determines whether a string represents json data
func isJSON(s string) bool {
var js map[string]interface{}
return json.Unmarshal([]byte(s), &js) == nil
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment