@function to-array($value)
{
	@if (type-of($value) == list)
	{
		@return $value;
	}
	@else
	{
		@return append((), $value);
	}
}
