Appearance
类似 zip,但是接受一个 iteratee 指定重组方式。
zip
iteratee
import { zipWith } from '@base-web-kits/base-tools-ts'; zipWith([1, 2], [10, 20], [100, 200], (a, b, c) => a + b + c); // 结果: [111, 222]
arrays (...Array)
iteratee (Function)
(Array)