"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.getRoamingPath = getRoamingPath;
function getRoamingPath() {
return process.env.APPDATA || (process.platform == 'darwin' ? process.env.HOME + '/Library/Preferences' : process.env.HOME + "/.local/share");
}