1 Star 0 Fork 0

wy2010344/npm_mve

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
filterChildren.js 603 Bytes
一键复制 编辑 原始数据 按行查看 历史
wangyang 提交于 2021-10-15 15:55 . 更新
"use strict";
exports.__esModule = true;
exports.filterChildren = void 0;
var childrenBuilder_1 = require("./childrenBuilder");
var ifChildren_1 = require("./ifChildren");
/**
* 无缓存mvc
* @param array
* @param fun
*/
function filterChildren(array, fun) {
return (0, ifChildren_1.ifChildren)(function (me) {
var vs = [];
array().forEach(function (row, index) {
var v = fun(me, row, index);
vs.push(v);
});
return (0, childrenBuilder_1.fragment)({
children: vs
});
});
}
exports.filterChildren = filterChildren;
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
TypeScript
1
https://gitee.com/wy2010344/npm_mve.git
[email protected]:wy2010344/npm_mve.git
wy2010344
npm_mve
npm_mve
master

搜索帮助