csk_fn_size_less_than
          Use this function to see if the size of the object list is less than the input size.
         
         - Boolean: csk_fn_size_less_than(List<Object> inputList, String input)
 - Input: 
           
- List<Object> inputList: The object to be checked
 - String input: The number of objects to be compared to the inputList
 
 - Example: 
           
$csk_fn_size_less_than(["A", "B", "C"], "1") → false
$csk_fn_size_less_than(["A", "B", "C"], "2") → false
$csk_fn_size_less_than(["A", "B", "C"], "4") → true