def relative_path_is_in_version()

in probe_scraper/scrapers/moz_central_scraper.py [0:0]


def relative_path_is_in_version(rel_path, version):
    # The devtools file exists in a bunch of versions, but we only care for it
    # since firefox 71 (bug 1578661).
    if (
        rel_path == "devtools/shared/css/generated/properties-db.js"
        or rel_path == "servo/components/style/properties/counted_unknown_properties.py"
    ):
        return version >= 71
    return True