Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Usefull index is solution in Clear category for Remove All After by luipenox
def remove_all_after(items, border):
return items[:items.index(border) + 1] if border in items else items
March 31, 2022