Repositorio del curso CCOM4030 el semestre B91 del proyecto Artesanías con el Instituto de Cultura

v35.js 1.6KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. import bytesToUuid from './bytesToUuid.js';
  2. function uuidToBytes(uuid) {
  3. // Note: We assume we're being passed a valid uuid string
  4. var bytes = [];
  5. uuid.replace(/[a-fA-F0-9]{2}/g, function (hex) {
  6. bytes.push(parseInt(hex, 16));
  7. });
  8. return bytes;
  9. }
  10. function stringToBytes(str) {
  11. str = unescape(encodeURIComponent(str)); // UTF8 escape
  12. var bytes = new Array(str.length);
  13. for (var i = 0; i < str.length; i++) {
  14. bytes[i] = str.charCodeAt(i);
  15. }
  16. return bytes;
  17. }
  18. export var DNS = '6ba7b810-9dad-11d1-80b4-00c04fd430c8';
  19. export var URL = '6ba7b811-9dad-11d1-80b4-00c04fd430c8';
  20. export default function (name, version, hashfunc) {
  21. var generateUUID = function generateUUID(value, namespace, buf, offset) {
  22. var off = buf && offset || 0;
  23. if (typeof value == 'string') value = stringToBytes(value);
  24. if (typeof namespace == 'string') namespace = uuidToBytes(namespace);
  25. if (!Array.isArray(value)) throw TypeError('value must be an array of bytes');
  26. if (!Array.isArray(namespace) || namespace.length !== 16) throw TypeError('namespace must be uuid string or an Array of 16 byte values'); // Per 4.3
  27. var bytes = hashfunc(namespace.concat(value));
  28. bytes[6] = bytes[6] & 0x0f | version;
  29. bytes[8] = bytes[8] & 0x3f | 0x80;
  30. if (buf) {
  31. for (var idx = 0; idx < 16; ++idx) {
  32. buf[off + idx] = bytes[idx];
  33. }
  34. }
  35. return buf || bytesToUuid(bytes);
  36. }; // Function#name is not settable on some platforms (#270)
  37. try {
  38. generateUUID.name = name;
  39. } catch (err) {} // For CommonJS default export support
  40. generateUUID.DNS = DNS;
  41. generateUUID.URL = URL;
  42. return generateUUID;
  43. }