Skip to content

Latest commit

 

History

History
45 lines (27 loc) · 1.21 KB

README.md

File metadata and controls

45 lines (27 loc) · 1.21 KB

moment-emoji

🕔 library that returns the approximate emoji for the time

Use

  • 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>

Demo

http://oscarmorrison.com/moment-emoji/

Screen Shot 2019-07-04 at 11 42 25 pm

Usecase

Why would anyone ever use this? I used it for a quick uebersicht widget that I made.

Screen Shot 2019-07-04 at 11 49 22 pm

Caveat

This was made on MacOS, not sure if it works on other platforms.