lodash源码解读util第一部分
栏目: JavaScript · 发布时间: 6年前
内容简介:1. _.attempt(func, [args])执行方法, 返回结果或者错误, 搭配_.isError使用源码
- 源码版本4.17.4
1. _.attempt(func, [args])
执行方法, 返回结果或者错误, 搭配_.isError使用
源码
function attempt(func, ...args) { try { return func.apply(undefined, args) } catch (e) { return isError(e) ? e : new Error(e) } }
调用利用函数的apply + try catch
示例
// Avoid throwing errors for invalid selectors. var elements = _.attempt(function(selector) { return document.querySelectorAll(selector); }, '>_>'); if (_.isError(elements)) { elements = []; }
2. _.cond(pairs)
创建一个迭代对的函数.
pairs本身是数组, 每一项也是包含两个函数的数组.
当执行迭代函数时, 如果第一个函数返回true, 就执行改项的第二个函数,反之, 执行下一项.
function cond(pairs) { const length = pairs == null ? 0 : pairs.length pairs = !length ? [] : map(pairs, (pair) => { if (typeof pair[1] != 'function') { throw new TypeError('Expected a function') } return [pair[0], pair[1]] }) return (...args) => { for (const pair of pairs) { if (pair[0].apply(this, args)) { return pair[1].apply(this, args) } } } }
- 利用map遍历进行了参数检查
-
利用apply调用
示例
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Operating System Algorithms
Nathan Adams、Elisha Chirchir / CreateSpace Independent Publishing Platform / 2017-4-21 / USD 39.15
Operating System Algorithms will walk you through in depth examples of algorithms that you would find in an operating system. Selected algorithms include process and disk scheduling.一起来看看 《Operating System Algorithms》 这本书的介绍吧!