createGuid.js 692 B

12345678910111213141516171819202122
  1. /**
  2. * Creates a Globally unique identifier (GUID) string. A GUID is 128 bits long, and can guarantee uniqueness across space and time.
  3. *
  4. * @function
  5. *
  6. * @returns {String}
  7. *
  8. *
  9. * @example
  10. * this.guid = Cesium.createGuid();
  11. *
  12. * @see {@link http://www.ietf.org/rfc/rfc4122.txt|RFC 4122 A Universally Unique IDentifier (UUID) URN Namespace}
  13. */
  14. function createGuid() {
  15. // http://stackoverflow.com/questions/105034/how-to-create-a-guid-uuid-in-javascript
  16. return "xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g, function (c) {
  17. const r = (Math.random() * 16) | 0;
  18. const v = c === "x" ? r : (r & 0x3) | 0x8;
  19. return v.toString(16);
  20. });
  21. }
  22. export default createGuid;