We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7bcf6a commit 09c75cdCopy full SHA for 09c75cd
1 file changed
index.js
@@ -198,13 +198,7 @@ function parse (instance, interval) {
198
nextNegative = -1
199
position.value++
200
continue
201
- } else if (char === '+') {
202
- position.value++
203
- continue
204
- } else if (char === ' ') {
205
206
207
- } else if (char < '0' || char > '9') {
+ } else if (!(char >= '0' && char <= '9')) {
208
209
210
} else {
0 commit comments