tailwindcss-turbine
Version:
Component generator for Tailwind CSS
12 lines • 357 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.prependApply = void 0;
const prependApply = (style) => {
const trimmed = style.trim();
if (!trimmed.startsWith('@apply')) {
return '@apply ' + trimmed;
}
return style;
};
exports.prependApply = prependApply;
//# sourceMappingURL=prependApply.js.map