Create GUID - Node.js Security

Node.js examples for Security:GUID

Description

Create GUID

Demo Code

guid: function () {
  /*jshint bitwise: false*/
  return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function (c) {
    var r = Math.random() * 16 | 0, v = c === 'x' ? r : (r & 0x3 | 0x8);
    return v.toString(16);
  });/*from www  . j  a v a 2s.  co  m*/
},

Related Tutorials