// @flow import {curry} from "flow-static-land/lib/Fun"; /** * Returns true if given index is the last one or false otherwise. */ const isLastIndex = (array: Array, index: number): boolean => index === array.length - 1; export default curry(isLastIndex);