Skip to content

Commit

Permalink
Merge pull request #637 from zorji/feat/update-uuid-v7-usage
Browse files Browse the repository at this point in the history
refactor(): update usage for uuid@v7
  • Loading branch information
kamilmysliwiec committed Mar 10, 2020
2 parents 6be6c25 + f0ed28d commit b4d9e7e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/utils/generate-token.util.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
import * as uuid from 'uuid/v4';
import { v4 } from 'uuid';

export const generateString = () => uuid();
export const generateString = () => v4();

0 comments on commit b4d9e7e

Please sign in to comment.