From d98b1b16aa956d39228e424d56c96a8316bd3d6e Mon Sep 17 00:00:00 2001 From: Arnelle Balane Date: Tue, 26 Feb 2019 11:02:35 +0800 Subject: [PATCH] Add eachIndex() method to proxy handlers --- index.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/index.js b/index.js index 515b6cb..eca02d8 100644 --- a/index.js +++ b/index.js @@ -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, @@ -41,7 +42,8 @@ const handlers = { dig, drop, dropWhile, - each + each, + eachIndex }; export default function rbjs(toProxy) {