mirror of
https://github.com/meteor/meteor.git
synced 2026-01-11 08:38:01 -05:00
9 lines
199 B
TypeScript
9 lines
199 B
TypeScript
export function cssToCommonJS(css: string, _hash: string) {
|
|
return [
|
|
'module.exports = require("meteor/modules").addStyles(',
|
|
" " + JSON.stringify(css),
|
|
");",
|
|
""
|
|
].join("\n");
|
|
}
|