UNPKG

ts-prime

Version:

A utility library for JavaScript and Typescript.

8 lines (7 loc) 167 B
import { purry } from './purry'; export function reverse() { return purry(_reverse, arguments); } function _reverse(array) { return array.slice().reverse(); }