blob: dfef7272443b92d7df9f315990c0912966e73bfa [file] [log] [blame]
// Copyright 2021 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base_string.h"
#include <algorithm>
#include "base/strings/string_util.h"
namespace extensions {
bool ContainsStringIgnoreCaseASCII(const std::set<std::string>& collection,
const std::string& value) {
return std::find_if(std::begin(collection), std::end(collection),
[&value](const std::string& s) -> bool {
return base::EqualsCaseInsensitiveASCII(s, value);
}) != std::end(collection);
}
} // namespace extensions