From 305d87779000d9b0e40ab4d481eb3b79c5965607 Mon Sep 17 00:00:00 2001 From: Robert Kieffer Date: Thu, 28 Jun 2018 14:28:25 -0700 Subject: [PATCH] fix: typo --- lib/v35.js | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/v35.js b/lib/v35.js index 7e1af903..8b066cc5 100644 --- a/lib/v35.js +++ b/lib/v35.js @@ -3,7 +3,6 @@ var bytesToUuid = require('./bytesToUuid'); function uuidToBytes(uuid) { // Note: We assume we're being passed a valid uuid string var bytes = []; - const el = uuid.replace(/[a-fA-F0-9]{2}/g, function(hex) { bytes.push(parseInt(hex, 16)); });