UNPKG

@winglet/style-utils

Version:

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

12 lines (9 loc) 289 B
'use strict'; 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; }; exports.cxLite = cxLite;