module Sprockets::PathUtils

def absolute_path?(path)

Delegate to Pathname since the logic gets complex.
On Windows, ALT_SEPARATOR is \
def absolute_path?(path)
  Pathname.new(path).absolute?
end