Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
});
// $ExpectError
uuid.v4({
rng: () => "bla"
});
// $ExpectError
v4({
rng: () => "bla"
});
v3.name;
v3("bla");
v3("bla", "bla");
v3("bla", v3.DNS);
v3("bla", v3.URL);
v3([0x10, 0x91, 0x56, 0xbe, 0xc4, 0xfb, 0xc1, 0xea]);
v3(
[0x10, 0x91, 0x56, 0xbe, 0xc4, 0xfb, 0xc1, 0xea],
[0x71, 0xb4, 0xef, 0xe1, 0x67, 0x1c, 0x58, 0x36]
);
// $ExpectError
v3("bla", { yolo: true });
v5.name;
v5("bla");
v5("bla", "bla");
v5("bla", v5.DNS);
v5("bla", v5.URL);
v5([0x10, 0x91, 0x56, 0xbe, 0xc4, 0xfb, 0xc1, 0xea]);
expect(() => validate.uuid(uuid3('foo.com', uuid3.DNS)), 'not to throw');
});
() => validate.uuid3(uuid3('foo.com', uuid3.DNS)),
'to throw',
const {
username, projName, projCode, projDesc
} = req.body;
let isProjExist = !!db.get('projects').find({
projCode
}).value();
if(isProjExist) return res.json({err: projCode + ' is exist'});
if(!username || !projCode || !projName) return res.json({
err: true,
desc: 'username, projName, projCode are required.'
});
const createProjId = uuidv3(projName + projCode + username, uuidv3.DNS);
let newProject = entityMerge(req.body, projectEntity);
Object.assign(newProject, {
id: createProjId,
createdDate: Date.now(),
founder: username
});
db.set(`projects.${createProjId}`, newProject).write();
audit(createProjId, {
username,
note: projDesc,
type: 'createProj'
});
res.json({