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

Method double

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

Double-quoted strings

()

Source from the content-addressed store, hash-verified

92
93 /** Double-quoted strings */
94 private double(): StringToken | undefined {
95 const m = /^"([^"]*)" */.exec(this.str);
96 if (!m) return;
97 this.skip(m);
98 return { type: 'string', quote: '"', string: `"${m[1]}"`, value: m[1] };
99 }
100
101 /** Single-quoted strings */
102 private single(): StringToken | undefined {

Callers 1

stringMethod · 0.95

Calls 1

skipMethod · 0.95

Tested by

no test coverage detected