// @flow import {curry} from "flow-static-land/lib/Fun"; /** * Returns a new Array with elements appended to the one given. */ const append = ( elements: Array, array: Array ): Array => [...array, ...elements]; export default curry(append);