mirror of
https://github.com/twitter/twemoji.git
synced 2025-06-23 12:07:57 +09:00
6 lines
282 B
Bash
Executable File
6 lines
282 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)"
|