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

Method ident

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

Identifier tokens: word or dash sequences

()

Source from the content-addressed store, hash-verified

59
60 /** Identifier tokens: word or dash sequences */
61 private ident(): IdentToken | undefined {
62 const m = /^([\w-]+) */.exec(this.str);
63 if (!m) return;
64 this.skip(m);
65 return { type: 'ident', string: m[1] };
66 }
67
68 /** Integer tokens, possibly with unit */
69 private int(): NumberToken | undefined {

Callers 1

valueMethod · 0.95

Calls 1

skipMethod · 0.95

Tested by

no test coverage detected