blog/_posts/code-first.md

23 lines
549 B
Markdown
Raw Normal View History

2022-10-12 01:32:19 +00:00
---
title: 这是一段来源于 `carbon.now.sh` 的代码
2023-11-24 05:15:59 +00:00
title: Git 免密登录
date: 2022-09-30
tags:
- javascript
2022-10-12 01:32:19 +00:00
---
carbon.now.sh 可以让你的文本代码转换成图片,并可以随时分享出去!
```js
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
}
2023-11-24 05:15:59 +00:00
```