UNPKG

mout

Version:

Modular Utilities

12 lines (11 loc) 235 B
"use strict"; exports.__esModule = true; /** * Returns a copy of the array in reversed order. */ function reverse(array) { var copy = array.slice(); copy.reverse(); return copy; } exports["default"] = reverse;