From b43752fe1391fada1f828c1dd6339ea2fbccd171 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Geir=20G=C3=A5sodden?= Date: Wed, 19 Dec 2018 07:11:17 +0100 Subject: [PATCH] Cleanup (patch) --- index.js | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/index.js b/index.js index 19cc2b0..beb4860 100644 --- a/index.js +++ b/index.js @@ -1,7 +1,3 @@ -'use strict' - const uuid = require('uuid') -module.exports = (ending) => { - return `${uuid()}${ending || ''}` -} +module.exports = ending => `${uuid()}${ending || ''}`