aboutsummaryrefslogtreecommitdiff
path: root/v_windows/v/old/vlib/builtin/js/byte.js.v
blob: a2508db39977514821940e5f9bcb5f20031f6084 (plain)
1
2
3
4
5
6
7
8
module builtin

pub fn (b byte) is_space() bool {
	mut result := false
	#result = /^\s*$/.test(String.fromCharCode(b))

	return result
}