kisBool method

bool kisBool()

检查字符串是否为布尔值

Implementation

bool kisBool() {
  if (kisBlank()) {
    return false;
  }
  return (this == 'true' || this == 'false');
}