vending-machine/mobile/node_modules/licia/swap.js
2026-04-03 06:07:13 +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;