@sayan_shankhari/sem_ver
Version:
Semantic Version w.r.t. Git Log
15 lines (13 loc) • 454 B
JavaScript
class Request {
constructor (task = "", username = "", account = "", repository = "", branch = "") {
this .task = task;
this .username = username;
this .account = account;
this .repository = repository;
this .branch = branch;
}
}
function create_new_request (task = "", username = "", account = "", repository = "", branch = "") {
return new Request (task, username, account, repository, branch);
}
module .exports = { create_new_request }