From 4f645d21fdcc2e8d4da96424a55fd380123ac3ca Mon Sep 17 00:00:00 2001 From: Francisco Presencia Date: Fri, 5 Jun 2020 09:31:25 +0200 Subject: [PATCH] Export uuid as default as well This allows people to do: ```js import uuid from 'uuid'; uuid.v4(); ``` It also [helps with this Jest issue](https://stackoverflow.com/a/62210156/938236), but I think allowing for the above on itself is merit enough for this PR. --- wrapper.mjs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/wrapper.mjs b/wrapper.mjs index 87e7f2e7..7069f4bb 100644 --- a/wrapper.mjs +++ b/wrapper.mjs @@ -1,4 +1,7 @@ import uuid from './dist/index.js'; + +export default uuid; + export const v1 = uuid.v1; export const v3 = uuid.v3; export const v4 = uuid.v4;