UNPKG

xe-utils-es

Version:

JavaScript 函数库、工具类

11 lines (10 loc) 300 B
/** * 从左至右遍历,匹配最近的一条数据 * * @param {object} obj 对象/数组 * @param {Function} iterate(item, index, obj) 回调 * @param {object} context 上下文 * @return {object} */ declare const find: (obj: any, iterate: any, context?: any) => any; export default find;