Skip to content

Commit

Permalink
use double-quoted string
Browse files Browse the repository at this point in the history
  • Loading branch information
davidchambers committed Jul 25, 2020
1 parent 9de0c0f commit 4b180ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Data/String/Regex.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ exports._replaceBy = function (just) {
return s.replace(r, function (match) {
var groups = [];
var group, i = 1;
while (typeof (group = arguments[i++]) !== 'number') {
while (typeof (group = arguments[i++]) !== "number") {
groups.push(group == null ? nothing : just(group));
}
return f(match)(groups);
Expand Down

0 comments on commit 4b180ab

Please sign in to comment.