We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
@natefaubion pointed out this dependency. We should probably just inline this:
-- | Selects ASCII digits, i.e. `0..9`. isDigit :: Char -> Boolean isDigit c = let diff = (toCharCode c - toCharCode '0') in diff <= 9 && diff >= 0
https://github.com/purescript-contrib/purescript-unicode/blob/de173a882515bad669949a1dceccb49c9f96d48a/src/Data/Char/Unicode.purs#L366-L369
The text was updated successfully, but these errors were encountered:
No branches or pull requests
@natefaubion pointed out this dependency. We should probably just inline this:
https://github.com/purescript-contrib/purescript-unicode/blob/de173a882515bad669949a1dceccb49c9f96d48a/src/Data/Char/Unicode.purs#L366-L369
The text was updated successfully, but these errors were encountered: