Function: splitCommaList()
function splitCommaList(value: string): readonly Readonly<{
end: number;
start: number;
text: string;
}>[];
Defined in: _internal/font-analysis.ts:225
Split one CSS comma-list while preserving nested parentheses and quotes.
Parametersโ
valueโ
string
Returnsโ
readonly Readonly<{
end: number;
start: number;
text: string;
}>[]