Skip to content

Commit be9aea7

Browse files
committed
perf(hitsPerPageSelector): Use the correct lodash function
1 parent 1d6a92f commit be9aea7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

widgets/hits-per-page-selector/hits-per-page-selector.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ let React = require('react');
22
let ReactDOM = require('react-dom');
33

44
let utils = require('../../lib/utils.js');
5-
let reduce = require('lodash/collection/reduce');
5+
let any = require('lodash/collection/any');
66
let bem = utils.bemHelper('ais-hits-per-page-selector');
77
let cx = require('classnames');
88
let autoHideContainer = require('../../decorators/autoHideContainer');
@@ -40,9 +40,9 @@ function hitsPerPageSelector({
4040

4141
return {
4242
init: function(state) {
43-
let isCurrentInOptions = reduce(options, function(res, option) {
44-
return res || +state.hitsPerPage === +option.value;
45-
}, false);
43+
let isCurrentInOptions = any(options, function(option) {
44+
return +state.hitsPerPage === +option.value;
45+
});
4646

4747
if (!isCurrentInOptions) {
4848
options = [{value: undefined, label: ''}].concat(options);

0 commit comments

Comments
 (0)