2021-07-18 08:00:20 +02:00
|
|
|
module builtin
|
|
|
|
|
|
|
|
pub fn (b byte) is_space() bool {
|
|
|
|
mut result := false
|
2021-08-25 13:40:53 +02:00
|
|
|
#result.val = /^\s*$/.test(String.fromCharCode(b))
|
|
|
|
|
|
|
|
return result
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn (c byte) is_letter() bool {
|
|
|
|
result := false
|
|
|
|
|
|
|
|
#result.val = (c.val >= `a`.charCodeAt() && c.val <= `z`.charCodeAt()) || (c.val >= `A`.charCodeAt() && c.val <= `Z`.charCodeAt())
|
2021-07-18 08:00:20 +02:00
|
|
|
|
|
|
|
return result
|
|
|
|
}
|
2021-09-08 19:30:46 +02:00
|
|
|
|
|
|
|
pub fn (c byte) str() string {
|
|
|
|
res := ''
|
|
|
|
#res.str = c.val.toString()
|
|
|
|
|
|
|
|
return res
|
|
|
|
}
|