source: node_modules/es-toolkit/dist/compat/array/reverse.mjs

Last change on this file was a762898, checked in by istevanoska <ilinastevanoska@…>, 5 months ago

Added visualizations

  • Property mode set to 100644
File size: 130 bytes
Line 
1function reverse(array) {
2 if (array == null) {
3 return array;
4 }
5 return array.reverse();
6}
7
8export { reverse };
Note: See TracBrowser for help on using the repository browser.