Files
yusheng-h5/uni_modules/UniDevTools/node_modules/licia/swap.js
2025-08-11 11:06:07 +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;