Created
March 19, 2016 00:44
-
-
Save sousk/d1f96d6edc49ec12e868 to your computer and use it in GitHub Desktop.
Emoji Label Generator for Runscope Testing
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
var ust = (function(t) { return [t.getMonth() +1,"/",t.getDate(),'/',t.getHours()].join(''); })(new Date()); | |
var syms = ['๐','๐ฃ','๐บ','๐','๐ฃ','๐บ','๐ท','๐ฎ','๐','๐ถ','โฝ๏ธ','๐']; | |
var label = ust + (_(5).times(function() { return syms[(_.random(0, syms.length))]; })).join(' '); | |
variables.set("label", label); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment