class CSS

Constants

INHIBIT_PATTERN

Public Class Methods

valid?(str) click to toggle source
# File vendor/qwik/lib/qwik/util-css.rb, line 22
def self.valid?(str)
  INHIBIT_PATTERN.each {|c|
    return false if str.include?(c)
  }
  return true
end