@dillonkearns/elm-graphql
Version:
<img src="https://cdn.jsdelivr.net/gh/martimatix/logo-graphqelm/logo.svg" alt="dillonearns/elm-graphql logo" width="40%" align="right">
22 lines (15 loc) • 615 B
JavaScript
import _newArrowCheck from 'babel-runtime/helpers/newArrowCheck';
import { curry } from 'flow-static-land/lib/Fun';
var _this = undefined;
/**
* Reduce the given array applying reduce function only to elements filtered.
*/
var reduceIf = function (filter, reduce, resultInitial, array) {
_newArrowCheck(this, _this);
return array.reduce(function (result, element, index) {
_newArrowCheck(this, _this);
return filter(element, index, result) ? reduce(result, element, index) : result;
}.bind(this), resultInitial);
}.bind(undefined);
var reduceIf$1 = curry(reduceIf);
export default reduceIf$1;