mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-27 12:01:00 +00:00
5 lines
183 B
JavaScript
5 lines
183 B
JavaScript
export default function reverse(values) {
|
|
if (typeof values[Symbol.iterator] !== "function") throw new TypeError("values is not iterable");
|
|
return Array.from(values).reverse();
|
|
}
|