π library that returns the approximate emoji for the time
- ensure you have moment (hard requirement), loaded first
- src moment-emoji.js (or copy in file into your js)
on any moment time, just called moment().emoji()
<html>
<body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.24.0/moment.min.js"></script>
<script src="https://raw.githack.com/oscarmorrison/moment-emoji/master/moment-emoji.js"></script>
<script>
var time = moment();
var emoji = time.emoji();
console.log(time.format('hh:mm'), emoji);
</script>
</body>
</html>
http://oscarmorrison.com/moment-emoji/
Why would anyone ever use this? I used it for a quick uebersicht widget that I made.
This was made on MacOS, not sure if it works on other platforms.