We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 085022e commit 6edb70fCopy full SHA for 6edb70f
src/Data/String/CodePoints.purs
@@ -266,7 +266,7 @@ toCodePointArrayFallback :: String -> Array CodePoint
266
toCodePointArrayFallback s = unfoldr unconsButWithTuple s
267
268
unconsButWithTuple :: String -> Maybe (Tuple CodePoint String)
269
-unconsButWithTuple s' = (\{ head, tail } -> Tuple head tail) <$> uncons s'
+unconsButWithTuple s = (\{ head, tail } -> Tuple head tail) <$> uncons s
270
271
272
-- | Returns a record with the first code point and the remaining code points
0 commit comments