Created
December 20, 2016 12:37
-
-
Save andreasvirkus/146c0be3a9d23e480ca51456540148ab to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Returns a small symbol with the correct time displayed in the depicted analog clock | |
*/ | |
(function () { | |
return "\ud83d"+String.fromCharCode(56656+((h=(n=new Date).getHours()%12)?h-1:11)+(n.getMinutes()>29&&12)) | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment