Skip to main content
2 of 2
added 53 characters in body
Neil
  • 184.4k
  • 12
  • 76
  • 290

JavaScript (ES6), 84 81 bytes

s=>(new Set(t=[...s]).size>2)*(!t.some((c,i)=>c>s[i+1])-!t.some((c,i)=>c<s[i+1])) 

Assumes the input is all in the same case. Returns 1 for raising wavy, -1 for decreasing wavy, 0 or -0 (both are falsy) for not wavy. Edit: Saved 3 bytes thanks to @RobertHickman.

Neil
  • 184.4k
  • 12
  • 76
  • 290