various optimisations
This commit is contained in:
@ -1 +1 @@
|
||||
isdigit(c) return c >= '0' & c <= '9';
|
||||
isdigit(c) => c >= '0' & c <= '9';
|
||||
|
Reference in New Issue
Block a user
@ -1 +1 @@
|
||||
isdigit(c) return c >= '0' & c <= '9';
|
||||
isdigit(c) => c >= '0' & c <= '9';
|
||||
|