Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.134.253.166
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
node_modules /
postcss-merge-idents /
Delete
Unzip
Name
Size
Permission
Date
Action
dist
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
node_modules
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
CHANGELOG.md
1.05
KB
-rw-rw-r--
2022-08-30 11:49
LICENSE-MIT
1.07
KB
-rw-rw-r--
2022-08-30 11:49
README.md
1.61
KB
-rw-rw-r--
2022-08-30 11:49
package.json
1.39
KB
-rw-rw-r--
2022-08-30 11:49
Save
Rename
# [postcss][postcss]-merge-idents [][ci] [][npm] [][deps] > Merge keyframe and counter style identifiers. ## Install With [npm](https://npmjs.org/package/postcss-merge-idents) do: ``` npm install postcss-merge-idents --save ``` ## Example This module will merge identifiers such as `@keyframes` and `@counter-style`, if their properties are identical. Then, it will update those declarations that depend on the duplicated property. ### Input ```css @keyframes rotate { from { transform: rotate(0) } to { transform: rotate(360deg) } } @keyframes flip { from { transform: rotate(0) } to { transform: rotate(360deg) } } .rotate { animation-name: rotate } .flip { animation-name: flip } ``` ### Output ```css @keyframes flip { from { transform: rotate(0) } to { transform: rotate(360deg) } } .rotate { animation-name: flip } .flip { animation-name: flip } ``` ## Usage See the [PostCSS documentation](https://github.com/postcss/postcss#usage) for examples for your environment. ## Contributing Pull requests are welcome. If you add functionality, then please add unit tests to cover it. ## License MIT © [Ben Briggs](http://beneb.info) [ci]: https://travis-ci.org/ben-eb/postcss-merge-idents [deps]: https://gemnasium.com/ben-eb/postcss-merge-idents [npm]: http://badge.fury.io/js/postcss-merge-idents [postcss]: https://github.com/postcss/postcss