Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
sonar-project.properties
Empty file added .scannerwork/.sonar_lock
Empty file.
1 change: 1 addition & 0 deletions goorm.manifest
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"storage":"10","type":"nodejs","detailedtype":"default","author":"kihyoun_lee_77oz2a3p9","name":"git-lab","description":"","date":"2018/12/20 12:45:30","plugins":{"goorm.plugin.nodejs":[{"plugin.nodejs.main":"main","plugin.nodejs.source_path":"./","plugin.nodejs.run_option":"","plugin.nodejs.run_on":"console","plugin.nodejs.log_path":"./server.log"}]},"is_user_plugin":false,"author_email":"kihyoun.lee@goorm.io","author_name":"kihyoun.lee","ignore_patterns":[],"project_domain":[{"id":"kihyoun_lee_77oz2a3p9","url":"git-lab-ggasr.dev.goorm.io","port":"3000"}]}
14 changes: 14 additions & 0 deletions src/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
function add(a, b) {
const ret = a + b;
return ret;
}

function add2(a, b) {
const ret = a + b;
return a + ret;
}

function add3(a, b) {
const ret = a + b;
return a + ret;
}
1 change: 1 addition & 0 deletions src/index_copy0.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
console.log('test');