This commit is contained in:
8
node_modules/licia/swap.js
generated
vendored
Normal file
8
node_modules/licia/swap.js
generated
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
exports = function(arr, a, b) {
|
||||
var tmp = arr[a];
|
||||
arr[a] = arr[b];
|
||||
arr[b] = tmp;
|
||||
return arr;
|
||||
};
|
||||
|
||||
module.exports = exports;
|
||||
Reference in New Issue
Block a user