mysterium-vpn-js
Version:
Javascript SDK for Mysterium node
15 lines (14 loc) • 408 B
JavaScript
;
/**
* Copyright (c) 2020 BlockDev AG
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.parseIP = void 0;
// eslint-disable-next-line @typescript-eslint/no-explicit-any
function parseIP(data) {
return data;
}
exports.parseIP = parseIP;