UNPKG

zss-engine

Version:
12 lines (11 loc) 332 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.injectServerCSS = injectServerCSS; exports.getServerCSS = getServerCSS; const styleSheets = {}; function injectServerCSS(hash, sheet) { styleSheets[hash] = sheet; } function getServerCSS() { return Object.values(styleSheets).join('\n'); }