mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-24 14:56:27 +00:00
17 lines
382 B
Ruby
17 lines
382 B
Ruby
# frozen_string_literal: true
|
|
|
|
class NokogiriHandler
|
|
class << self
|
|
# See "set of space-separated tokens" in the HTML5 spec.
|
|
WHITE_SPACE = /[ \x09\x0A\x0C\x0D]+/
|
|
|
|
def link_rel_include(token_list, token)
|
|
token_list.to_s.downcase.split(WHITE_SPACE).include?(token.downcase)
|
|
end
|
|
|
|
def casecmp(str1, str2)
|
|
str1.to_s.casecmp?(str2.to_s)
|
|
end
|
|
end
|
|
end
|