class ExecJS::ExternalRuntime

def which(command)

def which(command)
  Array(command).find do |name|
    name, args = name.split(/\s+/, 2)
    path = locate_executable(name)
    next unless path
    args ? "#{path} #{args}" : path
  end
end