parseIdentifier function Parsing

String parseIdentifier(
  1. String text
)

Parses text as a CSS identifier and returns the result.

Throws a SassFormatException if parsing fails.

Implementation

String parseIdentifier(String text) => Parser.parseIdentifier(text);