frontend/.pnpm-store/v3/files/d7/1a5ea964ee9158e286e7e62a6727bed57714c947fba353361dd7bee7d3e120df8d3b9179bef5b5d6775d7a13bf415d1b4e8df338b39cc1718bd29f18a40c9b

25 lines
698 B
Plaintext

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.shuffleArray = exports.SocksClientError = void 0;
/**
* Error wrapper for SocksClient
*/
class SocksClientError extends Error {
constructor(message, options) {
super(message);
this.options = options;
}
}
exports.SocksClientError = SocksClientError;
/**
* Shuffles a given array.
* @param array The array to shuffle.
*/
function shuffleArray(array) {
for (let i = array.length - 1; i > 0; i--) {
const j = Math.floor(Math.random() * (i + 1));
[array[i], array[j]] = [array[j], array[i]];
}
}
exports.shuffleArray = shuffleArray;
//# sourceMappingURL=util.js.map