Merge branch 'string-extensions-compatibility'
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -8,7 +8,7 @@ class Rivets.KeypathParser | ... | @@ -8,7 +8,7 @@ class Rivets.KeypathParser |
8 | tokens = [] | 8 | tokens = [] |
9 | current = {interface: root, path: ''} | 9 | current = {interface: root, path: ''} |
10 | 10 | ||
11 | for index, char of keypath | 11 | for char in keypath |
12 | if char in interfaces | 12 | if char in interfaces |
13 | tokens.push current | 13 | tokens.push current |
14 | current = {interface: char, path: ''} | 14 | current = {interface: char, path: ''} | ... | ... |
-
Please register or sign in to post a comment