Skip to content

Instantly share code, notes, and snippets.

View nanggo's full-sized avatar
🌴
Less is more

NANGGO nanggo

🌴
Less is more
View GitHub Profile
🌞 Morning 44 commits ███░░░░░░░░░░░░░░░░░░ 14.5%
🌆 Daytime 117 commits ████████░░░░░░░░░░░░░ 38.6%
🌃 Evening 86 commits █████▉░░░░░░░░░░░░░░░ 28.4%
🌙 Night 56 commits ███▉░░░░░░░░░░░░░░░░░ 18.5%
@nanggo
nanggo / .git-commit-template
Created April 16, 2021 00:59 — forked from tooget/.git-commit-template
This commit message template that helps you write great commit messages and enforce it across your team.
# [<태그>][#<관련 Github 이슈 번호>] <커밋 메시지 제목> (적용되었을 때의 효과를 중심으로, 최대 72자)
# - 수정이유: <이 커밋이 왜 일어났으며, 무엇을 하기 위한 커밋인지>
# - 수정내용: <무엇을 수정하였는지 한줄 요약>
# - (선택사항) <기타 세부 내용>
#
# |<->|<---------- 최대한 50자 이내로 작성해주세요 ----------->|
# !실제 커밋시에는 이 설명을 지우고 커밋하세요!
#
# 제목예시:
# [INFRA][DOC][#55] 커밋 메시지 자동적용을 위한 파일 추가 및 가이드 문서 업데이트
@nanggo
nanggo / compose.js
Last active February 19, 2021 06:47
compose 구현
function compose() {
const funcArray = Array.prototype.slice.call(arguments);
return funcArray.reduce(
(prevFunc, nextFunc) =>
() => {
const args = Array.prototype.slice.call(arguments);
return nextFunc(prevFunc.apply(null, args));
}