You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* @param {(string|function)} leftJoinKey - Property name in this result set to join on or a function to produce a value to join on
1130
1130
* @param {(string|function)} rightJoinKey - Property name in the joinData to join on or a function to produce a value to join on
1131
1131
* @param {function} [mapFun=] - a function that receives each matching pair and maps them into output objects - function(left,right){return joinedObject}
1132
-
* @param {object} dataOptions - optional options to apply to data() calls for left and right sides
1132
+
* @param {object} [dataOptions=] - optional options to apply to data() calls for left and right sides
1133
+
* @param {boolean} dataOptions.removeMeta - allows removing meta before calling mapFun
1134
+
* @param {boolean} dataOptions.forceClones - forcing the return of cloned objects to your map object
1135
+
* @param {string} dataOptions.forceCloneMethod - Allows overriding the default or collection specified cloning method.
1133
1136
* @returns {Resultset} A resultset with data in the format [{left: leftObj, right: rightObj}]
0 commit comments