Files
fizzy/lib/rails_ext/string.rb
T
2025-02-18 17:08:56 -06:00

6 lines
122 B
Ruby

class String
def all_emoji?
self.match? /\A(\p{Emoji_Presentation}|\p{Extended_Pictographic}|\uFE0F)+\z/u
end
end