タイトルのまま[JavaScriptでUUID4を実現させる]
こちらを参考にminifyしました。
function uuid4(){for(var x="xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".split(""),t=0,o=x.length;t<o;t++)switch(x[t]){case"x":x[t]=Math.floor(16*Math.random()).toString(16);break;case"y":x[t]=(Math.floor(4*Math.random())+8).toString(16)}return x.join("")}
以上です。