uni-ticket-system/node_modules/licia/swap.js

9 lines
139 B
JavaScript
Raw Normal View History

2023-12-05 02:11:10 +00:00
exports = function(arr, a, b) {
var tmp = arr[a];
arr[a] = arr[b];
arr[b] = tmp;
return arr;
};
module.exports = exports;