Skip to content

Commit

Permalink
Add eachIndex() method to proxy handlers
Browse files Browse the repository at this point in the history
  • Loading branch information
arnellebalane authored and aldnav committed Jun 1, 2019
1 parent d7b3442 commit d98b1b1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ import dig from './methods/dig';
import drop from './methods/drop';
import dropWhile from './methods/dropWhile';
import each from './methods/each';
import eachIndex from './methods/eachIndex';

const handlers = {
all,
Expand All @@ -41,7 +42,8 @@ const handlers = {
dig,
drop,
dropWhile,
each
each,
eachIndex
};

export default function rbjs(toProxy) {
Expand Down

0 comments on commit d98b1b1

Please sign in to comment.