mancala/src/util/key_factory.ts

6 lines
94 B
TypeScript
Raw Normal View History

2021-06-27 19:28:09 +03:00
import { v4 as uuidv4 } from 'uuid';
export const generateKey = ()=>{
return uuidv4();
}