Skip to content

Commit ab2f474

Browse files
committed
Move map and push.apply to a for loop
1 parent 9340f7a commit ab2f474

File tree

1 file changed

+13
-11
lines changed

1 file changed

+13
-11
lines changed

index.js

+13-11
Original file line numberDiff line numberDiff line change
@@ -73,17 +73,19 @@ function pathtoRegexp (path, keys, options) {
7373

7474
if (path instanceof RegExp) {
7575
// Match all capturing groups of a regexp.
76-
var groups = path.source.match(/\((?!\?)/g) || [];
77-
78-
// Map all the matches to their numeric keys and push into the keys.
79-
keys.push.apply(keys, groups.map(function (match, index) {
80-
return {
81-
name: index,
82-
delimiter: null,
83-
optional: false,
84-
repeat: false
85-
};
86-
}));
76+
var groups = path.source.match(/\((?!\?)/g);
77+
78+
// Map all the matches to their numeric indexes and push into the keys.
79+
if (groups) {
80+
for (var i = 0; i < groups.length; i++) {
81+
keys.push({
82+
name: i,
83+
delimiter: null,
84+
optional: false,
85+
repeat: false
86+
});
87+
}
88+
}
8789

8890
// Return the source back to the user.
8991
return attachKeys(path, keys);

0 commit comments

Comments
 (0)