public.js 312 B

12345678
  1. export default{
  2. randomId:function(){
  3. return (((1+Math.random())*0x10000)|0).toString(16).substring(1);
  4. },
  5. guid:function(){
  6. return (this.randomId()+this.randomId()+"-"+this.randomId()+"-"+this.randomId()+"-"+this.randomId()+"-"+this.randomId()+this.randomId()+this.randomId());
  7. }
  8. }