function generate(count) {
var founded = false,
_sym = \'abcdefghijklmnopqrstuvwxyz1234567890\',
str = \'\';
while(!founded) {
for(va
to install uuid
npm install --save uuid
uuid is updated and the old import
const uuid= require('uuid/v4');
is not working and we should now use this import
const {v4:uuid} = require('uuid');
and for using it use as a funciton like this
const createdPlace = {
id: uuid(),
title,
description,
location:coordinates,
address,
creator
};