isBlank method

Expression isBlank()

Implementation

Expression isBlank() {
  // Note: We use equals by purpose here to compare to null and undefined in JS.
  return equals(NULL_EXPR);
}