mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
9 lines
137 B
V
9 lines
137 B
V
|
module builtin
|
||
|
|
||
|
pub fn (b byte) is_space() bool {
|
||
|
mut result := false
|
||
|
#result = /^\s*$/.test(String.fromCharCode(b))
|
||
|
|
||
|
return result
|
||
|
}
|