taggedjs
Version:
tagged template reactive html
15 lines • 639 B
JavaScript
import { buildBeforeElement } from '../../render/buildBeforeElement.function.js';
import { paintAppend, paintAppends } from '../../render/paint.function.js';
export function processFirstTagResult(support, counts, appendTo) {
const result = buildBeforeElement(support, counts, appendTo, undefined);
for (const dom of result.dom) {
if (dom.domElement) {
paintAppends.push([paintAppend, [appendTo, dom.domElement]]);
}
if (dom.marker) {
paintAppends.push([paintAppend, [appendTo, dom.marker]]);
}
}
return support;
}
//# sourceMappingURL=processTagResult.function.js.map