mirror of
https://github.com/twitter/twemoji.git
synced 2024-11-02 02:29:54 +00:00
7 lines
281 B
Bash
Executable File
7 lines
281 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
echo "twemoji.js $(cat 2/twemoji.js | wc -c)"
|
|
echo "twemoji.js gzipped $(gzip -c 2/twemoji.js | wc -c)"
|
|
echo "twemoji.min.js $(cat 2/twemoji.min.js | wc -c)"
|
|
echo "twemoji.min.js gzipped $(gzip -c 2/twemoji.min.js | wc -c)"
|