module Sass::Compiler::Varint

def length(value)

def length(value)
  return 1 if value < 128
  (value.bit_length + 6) / 7
end