MCPcopy
hub / github.com/freshframework/fresh / css

Function css

packages/init/src/init.ts:17–27  ·  view source on GitHub ↗
(strs: TemplateStringsArray, ...exprs: string[])

Source from the content-addressed store, hash-verified

15const POSTCSS_VERSION = "8.5.6";
16
17function css(strs: TemplateStringsArray, ...exprs: string[]): string {
18 let out = "";
19
20 for (let i = 0; i < exprs.length; i++) {
21 out += strs[i];
22 out += String(exprs[i]);
23 }
24 out += strs.at(-1) ?? "";
25
26 return out;
27}
28
29export class InitError extends Error {}
30

Callers 1

initProjectFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected