UNPKG

3xworkaround

Version:

This is an interface for 3x-ui panel. It will help developers to create, edit and delete inbounds and clients in a simple way.

14 lines (13 loc) 378 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.stringifySettings = void 0; const stringifySettings = (settings) => { if (typeof settings === "object") { return JSON.stringify(settings); } if (typeof settings === "string") { return settings; } return ""; }; exports.stringifySettings = stringifySettings;