Showing
4 changed files
with
7 additions
and
4 deletions
| ... | @@ -32,7 +32,7 @@ | ... | @@ -32,7 +32,7 @@ |
| 32 | <div class="container"> | 32 | <div class="container"> |
| 33 | <div class="hero"> | 33 | <div class="hero"> |
| 34 | <h1>악질 직업 생성기</h1> | 34 | <h1>악질 직업 생성기</h1> |
| 35 | - <p><img class="badge" src="https://img.shields.io/badge/lunch-prepared--by--mother-lightgrey" alt=""> | <a href="https://asked.kr/cksdlakstp12" target="_blank">질문 or 문의하는 곳</a> | <a href="https://github.com/cksdlakstp12/open_source" target="_blank">본 제작자의 Github</a> | <a href="http://khuhub.khu.ac.kr/2019102216/opensource_term_project/issues" target="_blank">이슈트래커</a></p> | 35 | + <p><img class="badge" src="https://img.shields.io/badge/lunch-prepared--by--mother-lightgrey" alt=""> | <a href="https://asked.kr/cksdlakstp12" target="_blank">질문 or 문의하는 곳</a> | <a href="https://github.com/cksdlakstp12/open_source" target="_blank">본 제작자의 Github</a> | <a href="https://github.com/cksdlakstp12/open_source/issues" target="_blank">이슈트래커</a></p> |
| 36 | <p><i>우리는 "엄"과 "응"의 시대에 살고 있습니다.</i></p> | 36 | <p><i>우리는 "엄"과 "응"의 시대에 살고 있습니다.</i></p> |
| 37 | </div> | 37 | </div> |
| 38 | </div> | 38 | </div> | ... | ... |
| 1 | var date = new Date(); | 1 | var date = new Date(); |
| 2 | 2 | ||
| 3 | function addZeroMonth(date) { | 3 | function addZeroMonth(date) { |
| 4 | - if ((date + 1) < 10) return `0${date + 1}`; | 4 | + if ((date) < 10) return `0${date}`; |
| 5 | - else return `${date + 1}`; | 5 | + else return `${date}`; |
| 6 | } | 6 | } |
| 7 | 7 | ||
| 8 | function addZeroDate(date) { | 8 | function addZeroDate(date) { | ... | ... |
This diff is collapsed. Click to expand it.
| ... | @@ -11,8 +11,11 @@ | ... | @@ -11,8 +11,11 @@ |
| 11 | "fs": "0.0.1-security", | 11 | "fs": "0.0.1-security", |
| 12 | "moment": "^2.26.0", | 12 | "moment": "^2.26.0", |
| 13 | "mysql": "^2.18.1", | 13 | "mysql": "^2.18.1", |
| 14 | + "node-schedule": "^1.3.2", | ||
| 14 | "path": "^0.12.7", | 15 | "path": "^0.12.7", |
| 15 | - "react": "^16.13.1" | 16 | + "react": "^16.13.1", |
| 17 | + "socket.io": "^2.3.0", | ||
| 18 | + "window": "^4.2.7" | ||
| 16 | }, | 19 | }, |
| 17 | "devDependencies": {}, | 20 | "devDependencies": {}, |
| 18 | "scripts": { | 21 | "scripts": { | ... | ... |
-
Please register or login to post a comment