Skip to content

Commit 4b180ab

Browse files
committed
use double-quoted string
1 parent 9de0c0f commit 4b180ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Data/String/Regex.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ exports._replaceBy = function (just) {
7575
return s.replace(r, function (match) {
7676
var groups = [];
7777
var group, i = 1;
78-
while (typeof (group = arguments[i++]) !== 'number') {
78+
while (typeof (group = arguments[i++]) !== "number") {
7979
groups.push(group == null ? nothing : just(group));
8080
}
8181
return f(match)(groups);

0 commit comments

Comments
 (0)