module Opal

def self.append_paths(*paths)

Same as #append_path but can take multiple paths.
def self.append_paths(*paths)
  @paths.concat(paths)
  nil
end