Current section

Files

Jump to
cssex lib helpers selector_chars.ex
Raw

lib/helpers/selector_chars.ex

defmodule CSSEx.Helpers.SelectorChars do
@moduledoc false
@white_spaces CSSEx.Helpers.WhiteSpace.code_points()
@appendable_first_char [?., ?#, ?+, ?>, ?~, ?:, ?[, ?| | @white_spaces]
def appendable_first_char(), do: @appendable_first_char
end