All files / web/styled-system/css cx.mjs

100% Statements 15/15
80% Branches 4/5
100% Functions 1/1
100% Lines 15/15

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 152x 2x 2x 2x 2x 2x 4x 2x 2x 2x 4x 2x 2x 1x 1x
function cx() {
  let str = '',
    i = 0,
    arg
 
  for (; i < arguments.length; ) {
    if ((arg = arguments[i++]) && typeof arg === 'string') {
      str && (str += ' ')
      str += arg
    }
  }
  return str
}
 
export { cx }