-
블로그 코드 꾸미는 방법기타 2022. 7. 11. 02:01
https://carbon.now.sh/?bg=rgba%28171%2C+184%2C+195%2C+1%29&t=seti&wt=none&l=auto&width=680&ds=true&dsyoff=20px&dsblur=68px&wc=true&wa=true&pv=56px&ph=56px&ln=false&fl=1&fm=Hack&fs=14px&lh=133%25&si=false&es=2x&wm=false Carbon | Create and share beautiful images of your source code
carbon.now.sh
const pluckDeep = key => obj => key.split('.').reduce((accum, key) => accum[key], obj)
const compose = (...fns) => res => fns.reduce((accum, next) => next(accum), res)
const unfold = (f, seed) => {
const go = (f, seed, acc) => {
const res = f(seed)
return res ? go(f, res[1], acc.concat([res[0]])) : acc
}'기타' 카테고리의 다른 글
괜찮은 블로그 (0) 2022.08.18 다른사람도 볼수있게 서버 실행시키기 (0) 2022.08.09 무료사진,글꼴 정리 (0) 2022.08.03 괜찮은 사이트 (0) 2022.08.03