Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 485 Bytes

README.md

File metadata and controls

26 lines (20 loc) · 485 Bytes

nim-only-uuid

A Nim source only UUID generator

A loose translation of this Javascript function (http://www.broofa.com/Tools/Math.uuid.js)

  Math.uuidCompact = function() {
    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);
    });
  };

Usage:

import nuuid

echo generateUUID()

Installation

nimble install nuuid