mingo
Version:
MongoDB query language for in-memory objects
13 lines (12 loc) • 411 B
TypeScript
import { ExpressionOperator } from "../../../types";
/**
* Merge two lists together.
*
* Transposes an array of input arrays so that the first element of the output array would be an array containing,
* the first element of the first input array, the first element of the second input array, etc.
*
* @param {Obj} obj
* @param {*} expr
* @return {*}
*/
export declare const $zip: ExpressionOperator;