Skip to content

Instantly share code, notes, and snippets.

@stevencch99
Created May 19, 2019 12:00
Show Gist options
  • Save stevencch99/b4ac617e2c244a4effad9b2146086e12 to your computer and use it in GitHub Desktop.
Save stevencch99/b4ac617e2c244a4effad9b2146086e12 to your computer and use it in GitHub Desktop.
function primeString(s) {
return (s + s).indexOf(s, 1) == s.length;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment