Guest User

Untitled

a guest
Jun 22nd, 2021
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. func (w *Word) IsAnimate() bool {
  2. if word, _, _ := resources.AnimateDictionary.Find([]dictionary.Word{{Token: w.Lowered}}); word.Token != "" {
  3. *w = Word(word)
  4. return true
  5. }
  6. return false
  7. }
  8.  
Advertisement
Add Comment
Please, Sign In to add comment