Skip to content

Instantly share code, notes, and snippets.

@andflett
Created October 4, 2012 15:15
Show Gist options
  • Save andflett/3834292 to your computer and use it in GitHub Desktop.
Save andflett/3834292 to your computer and use it in GitHub Desktop.
Is JSON for Sir Trevor
require 'json'
class String
def is_json?
begin
!!JSON.parse(self)
rescue
false
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment