lists-last
Get last value in lists, like Array[length-1].
Get last value in lists, like Array[length-1].
Get last index of value in lists, like Array.lastIndexOf().
Map values in lists to new values, like Array.map().
Get middle value in lists, like Array[i].
Get size of lists, like Set.size.
Check if atleast one value in lists passes the test, like Array.some().
Get all values in lists, like Object.values().
Get entries of lists, like Array.entries().
Check if two lists are equal.
Check if all values in lists pass the test, like Array.every().
Extra methods for lists.
Extra methods for lists (browserified, minified).
Filter values from lists that pass the test, like Array.filter().
Get first value in lists that satisfies the test, like Array.find().
Get all values in lists that satisfy the test, like Array.find().
Get indices of all values in lists that satisfy the test, like Array.findIndex().
Get index of first value in lists that satisfies the test, like Array.findIndex().
Get last value in lists that satisfies the test, like Array.find().
Get index of last value in lists that satisfies the test, like Array.findIndex().
Get first value in lists, like Array[0].