UNPKG

@e-group/redux-modules

Version:

eGroup team react-redux modules that share across projects.

8 lines (6 loc) 216 B
import findIndex from 'lodash/findIndex'; /** * To index string array that include "fetch" */ const findFetchIndex = leafs => findIndex(leafs, leaf => leaf.indexOf('fetch') !== -1); export default findFetchIndex;