MCPcopy Index your code
hub / github.com/NativeScript/NativeScript / comma

Method comma

packages/core/css-value/reworkcss-value.ts:53–58  ·  view source on GitHub ↗

Comma tokens: ","

()

Source from the content-addressed store, hash-verified

51
52 /** Comma tokens: "," */
53 private comma(): CommaToken | undefined {
54 const m = /^, */.exec(this.str);
55 if (!m) return;
56 this.skip(m);
57 return { type: 'comma', string: ',' };
58 }
59
60 /** Identifier tokens: word or dash sequences */
61 private ident(): IdentToken | undefined {

Callers 1

valueMethod · 0.95

Calls 1

skipMethod · 0.95

Tested by

no test coverage detected