UNPKG

@winglet/style-utils

Version:

Comprehensive CSS and style management utilities including className manipulation, CSS compression, and universal style manager for TypeScript projects

10 lines (8 loc) 268 B
const cxLite = (...args) => { let index = 0, length = args.length, cursor, result = ''; for (; index < length; index++) if ((cursor = args[index])) result = result ? result + ' ' + cursor : cursor; return result; }; export { cxLite };