| 1234567891011121314151617181920212223242526272829303132333435363738394041 | longDescription = """Removes at-rules which have the same identifier as another; for example twoinstances of `@keyframes one`. As the browser will only count the *last* ofthese declarations, all others can safely be removed."""inputExample = """@keyframes one {    0% {        opacity: 1;    }    to {        opacity: 0;    }}@keyframes one {    0% {        transform: rotate(0deg);    }    to {        transform: rotate(359deg);    }}.box {    animation-name: one;}"""outputExample = """@keyframes one {    0% {        transform: rotate(0deg);    }    to {        transform: rotate(359deg);    }}.box {    animation-name: one;}"""
 |