Home Reference Source Test Repository

Test

Description Identifier Count

should return a function

-

should be able to compose three functions

-

should concatenation all the elements of a list

-

should apply the function on all the elements and concatenate it

-

should return a curried function

-

should return another curried function

-

should return the suffix remaining after takeWhile

-

should reverse the arguments

-

should apply the provided function

-

should return the head of a list

-

should return undefined on an empty list

-

should return the head of a string

-

should return undefined on an empty string

-

should return all the elements of a list except the last one

-

should return undefined on an empty list

-

should return all the elements of a list except the last one of a string

-

should return undefined on an empty string

-

should intersperse a element in a list

-

should intersperse a element in a string

-

should return the last element of a list

-

should return undefined on an empty list

-

should return the last character of a string

-

should return undefined on an empty string

-

should return the largest element

-

should handle negative numbers

-

should return the lowest element

-

should handle negative numbers

-

should return value if first parameter is null

-

should return value if first parameter is undefined

-

should return handle more types than strings

-

should return the supposed to be null value if it is not null

-

should return the product of a list of numbers

-

should not remember the state of the accumulator

-

should handle negative numbers

-

should produce a range between a start and stop

-

should return an empty list if start is bigger than stop

-

should return an empty list if start is equal to stop

-

should produce a range with a given step

-

should split a string

-

should split a list

-

should split on zero position

-

should split on negative position

-

should summarize list of numbers

-

should not remember the state of the accumulator

-

should handle negative numbers

-

should return the tail of a list

-

should return undefined on an empty list

-

should return the tail of a string

-

should return undefined on an empty string

-

should return the elements that satisfies the provided predicate function

-

should transpose the rows and the columns

-

should transpose if some rows are shorter than the others and skip them

-

should decompose a list into its head and tail

-

should return undefined on an empty list

-

should decompose a string into its head and tail

-

should return undefined on an empty string

-

should return the first item in each array in one array and the second in another

-

should apply combinerFunction if provided

-