All Downloads are FREE. Search and download functionalities are using the official Maven repository.

gems.compass-core-1.0.3.lib.compass.util.rb Maven / Gradle / Ivy

There is a newer version: 3.7.2
Show newest version
module Compass::Util
  extend self

  def compass_warn(*args)
    Sass::Util.sass_warn(*args)
  end

  def blank?(value)
    case value
    when NilClass, FalseClass
      true
    when String, Array
      value.length.zero?
    else
      false
    end
  end

end




© 2015 - 2025 Weber Informatics LLC | Privacy Policy