https://github.com/si/wankify
Uglification to the next level
https://github.com/si/wankify
Last synced: about 2 months ago
JSON representation
Uglification to the next level
- Host: GitHub
- URL: https://github.com/si/wankify
- Owner: si
- Created: 2015-04-15T11:02:41.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2015-04-15T12:55:41.000Z (about 11 years ago)
- Last Synced: 2026-02-08T10:47:17.723Z (5 months ago)
- Size: 207 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Wankify
You've probably minified your code before.
You may have also prettified it or even uglified it.
Now it's time to wankify your code.
Enough with the talk - he's an example…
Before:
.my-class {
display: block;
width: 300px;
height: 200px;
position: fixed;
top: 10px;
right: 10px;
bottom: 10px;
left: 10px;
padding: 20px;
margin: 10px;
background: #FFF;
font-family: Helvetica, Arial, sans-serif;
font-weight: bold;
font-size: 15px;
color: #000;
}
After:
.my-class {
background: #FFF;
bottom: 10px;
color: #000;
display: block;
font-family: Helvetica, Arial, sans-serif;
font-size: 15px;
font-weight: bold;
height: 200px;
left: 10px;
margin: 10px;
padding: 20px;
position: fixed;
right: 10px;
top: 10px;
width: 300px;
}