You are here

function sassy_compass___compass_list in Sassy 7.3

Same name and namespace in other branches
  1. 7.2 extensions/compass/functions/lists.inc \sassy_compass___compass_list()

File

sassy_compass/functions/lists.inc, line 63

Code

function sassy_compass___compass_list() {
  $args = func_get_args();
  foreach ($args as $arg) {
    $list = array_merge($list, sassy_compass__list($arg));
  }
  return new SassString(implode(', ', $list));
}