EASYAIuniappNewUI/node_modules/licia/swap.js
2025-02-08 18:50:38 +08:00

9 lines
139 B
JavaScript

exports = function(arr, a, b) {
var tmp = arr[a];
arr[a] = arr[b];
arr[b] = tmp;
return arr;
};
module.exports = exports;