摘要: const curring = fn => { const { length } = fn const curried = (...args) => { return (args.length >= length ? fn(...args) : (...args2) => curried(...ar 阅读全文
posted @ 2020-12-18 14:49 LeoX的爬坑笔记 阅读(71) 评论(0) 推荐(0) 编辑