isArrayHeaderAfterHyphen function

bool isArrayHeaderAfterHyphen(
  1. String content
)

Checks if content represents an array header after a hyphen

Implementation

bool isArrayHeaderAfterHyphen(String content) {
  return content.trim().startsWith(openBracket) &&
      findUnquotedChar(content, colon) != -1;
}