Skip to content

Commit 5849257

Browse files
committed
use ===
1 parent 9112112 commit 5849257

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Data/String.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ exports._slice = function (just) {
137137
return function (e) {
138138
return function (s) {
139139
var res = s.slice(b, e);
140-
return (res.length == 0 ? nothing : just(res));
140+
return res.length === 0 ? nothing : just(res);
141141
};
142142
};
143143
};

0 commit comments

Comments
 (0)