class Sass::Script::Value::Base

def unary_div

Returns:
  • (Script::Value::String) - A string containing the value

Parameters:
  • other (Value) -- The right-hand side of the operator
def unary_div
  Sass::Script::Value::String.new("/#{self}")
end