Skip to content
This repository was archived by the owner on Sep 29, 2022. It is now read-only.

Commit

Permalink
🐛 Fix regex for args
Browse files Browse the repository at this point in the history
  • Loading branch information
acollierr17 committed Jan 17, 2022
1 parent 5f59b7d commit aeeea53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/functions.js
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ exports.parseCommandArguments = (args) => {
if (i === 0) x = x.replace(/[<[]/gm, '');
if (i === len - 1) x = x.replace(/[>\]]/gm, '');
return x;
}).join('').trim().split(/\s+/g);
}).join('').trim().split(/ +/g);
}
};

Expand Down

0 comments on commit aeeea53

Please sign in to comment.