titanscssc::lib_nth PHP Method

lib_nth() protected method

protected lib_nth ( $args )
    protected function lib_nth($args)
    {
        $list = $this->coerceList($args[0]);
        $n = $this->assertNumber($args[1]) - 1;
        return isset($list[2][$n]) ? $list[2][$n] : self::$defaultValue;
    }
titanscssc